1project(SHELL) 2 3add_definitions( 4 -DUNICODE 5 -D_UNICODE) 6 7list(APPEND SOURCE 8 recyclebin.c 9 recyclebin_generic.c 10 recyclebin_generic_enumerator.c 11 recyclebin_v5.c 12 recyclebin_v5_enumerator.c 13 recyclebin_private.h) 14 15add_library(recyclebin ${SOURCE} guid.c) 16add_pch(recyclebin recyclebin_private.h SOURCE) 17add_dependencies(recyclebin psdk) 18