mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
20 lines
454 B
CMake
20 lines
454 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_delay_importlibs(svchost netapi32 ole32)
|
|
add_importlibs(svchost advapi32 rpcrt4 kernel32 ntdll)
|
|
add_pch(svchost svchost.h SOURCE)
|
|
add_cd_file(TARGET svchost DESTINATION reactos/system32 FOR all)
|