reactos/base/applications/sc/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

20 lines
360 B
CMake

add_definitions(-DDEFINE_GUID)
list(APPEND SOURCE
control.c
create.c
delete.c
print.c
query.c
sc.c
start.c
usage.c
sc.h)
add_executable(sc ${SOURCE} sc.rc)
set_module_type(sc win32cui UNICODE)
add_importlibs(sc advapi32 msvcrt kernel32)
add_pch(sc sc.h SOURCE)
add_cd_file(TARGET sc DESTINATION reactos/system32 FOR all)