mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
907025a018
This takes care of adding the relvant include directory and the _ATL_NO_EXCEPTIONS define, if needed
17 lines
362 B
CMake
17 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)
|