mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
19 lines
387 B
CMake
19 lines
387 B
CMake
project(SHELL)
|
|
|
|
add_definitions(
|
|
-DUNICODE
|
|
-D_UNICODE
|
|
-D_ATL_NO_EXCEPTIONS)
|
|
|
|
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)
|