reactos/dll/win32/shell32/shellrecyclebin/CMakeLists.txt
Jérôme Gardou 907025a018 [CMAKE] Introduce the atl_classes interface library
This takes care of adding the relvant include directory and the _ATL_NO_EXCEPTIONS define, if needed
2020-10-20 21:44:54 +02:00

18 lines
362 B
CMake

project(SHELL)
add_definitions(
-DUNICODE
-D_UNICODE)
list(APPEND SOURCE
recyclebin.c
recyclebin_generic.c
recyclebin_generic_enumerator.c
recyclebin_v5.c
recyclebin_v5_enumerator.c
recyclebin_private.h)
add_library(recyclebin ${SOURCE} guid.c)
add_pch(recyclebin recyclebin_private.h SOURCE)
add_dependencies(recyclebin psdk)