reactos/base/services/svchost/CMakeLists.txt
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

20 lines
424 B
CMake

list(APPEND SOURCE
globals.c
registry.c
rpcsrv.c
netbios.c
svchost.c
svchost.h)
add_executable(svchost
${SOURCE}
security.cxx
svchost.rc)
target_link_libraries(svchost uuid)
set_module_type(svchost win32cui UNICODE)
add_importlibs(svchost advapi32 netapi32 rpcrt4 ole32 kernel32 ntdll)
add_pch(svchost svchost.h SOURCE)
add_cd_file(TARGET svchost DESTINATION reactos/system32 FOR all)