mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
18 lines
422 B
CMake
18 lines
422 B
CMake
project(SHELL)
|
|
|
|
add_definitions(
|
|
-DUNICODE
|
|
-D_UNICODE)
|
|
|
|
list(APPEND SOURCE
|
|
recyclebin.c
|
|
recyclebin_generic.cpp
|
|
recyclebin_generic_enumerator.cpp
|
|
recyclebin_v5.c
|
|
recyclebin_v5_enumerator.cpp
|
|
recyclebin_private.h)
|
|
|
|
add_library(recyclebin ${SOURCE} guid.c)
|
|
add_pch(recyclebin recyclebin_private.h SOURCE)
|
|
add_dependencies(recyclebin psdk)
|
|
target_link_libraries(recyclebin PRIVATE atl_classes)
|