2019-04-16 20:39:36 +00:00
|
|
|
project(SHELL)
|
|
|
|
|
|
|
|
add_definitions(
|
|
|
|
-DUNICODE
|
2020-09-18 09:08:58 +00:00
|
|
|
-D_UNICODE)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
recyclebin.c
|
2024-07-24 03:16:37 +00:00
|
|
|
recyclebin_generic.cpp
|
2024-07-24 02:24:56 +00:00
|
|
|
recyclebin_generic_enumerator.cpp
|
2011-05-16 13:12:07 +00:00
|
|
|
recyclebin_v5.c
|
2024-07-28 23:14:02 +00:00
|
|
|
recyclebin_v5_enumerator.cpp
|
2014-02-09 21:43:42 +00:00
|
|
|
recyclebin_private.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2014-02-09 21:43:42 +00:00
|
|
|
add_library(recyclebin ${SOURCE} guid.c)
|
|
|
|
add_pch(recyclebin recyclebin_private.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_dependencies(recyclebin psdk)
|
2024-07-28 23:14:02 +00:00
|
|
|
target_link_libraries(recyclebin PRIVATE atl_classes)
|