1
2list(APPEND SOURCE
3    globals.c
4    registry.c
5    rpcsrv.c
6    netbios.c
7    svchost.c)
8
9list(APPEND PCH_SKIP_SOURCE
10    security.cxx)
11
12add_executable(svchost
13    ${SOURCE}
14    ${PCH_SKIP_SOURCE}
15    svchost.rc)
16
17target_link_libraries(svchost uuid)
18set_module_type(svchost win32cui UNICODE)
19add_delay_importlibs(svchost netapi32 ole32)
20add_importlibs(svchost advapi32 rpcrt4 kernel32 ntdll)
21add_pch(svchost svchost.h "${PCH_SKIP_SOURCE}")
22add_cd_file(TARGET svchost DESTINATION reactos/system32 FOR all)
23