mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
6910fa624f
Modernize code. JIRA issue: CORE-19595 Rewrite RecycleBinGeneric in C++.
17 lines
366 B
CMake
17 lines
366 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.c
|
|
recyclebin_private.h)
|
|
|
|
add_library(recyclebin ${SOURCE} guid.c)
|
|
add_pch(recyclebin recyclebin_private.h SOURCE)
|
|
add_dependencies(recyclebin psdk)
|