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