mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
20 lines
349 B
CMake
20 lines
349 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.rc)
|
|
|
|
add_executable(sc ${SOURCE})
|
|
|
|
set_module_type(sc win32cui UNICODE)
|
|
add_importlibs(sc advapi32 msvcrt kernel32)
|
|
add_pch(sc sc.h)
|
|
add_cd_file(TARGET sc DESTINATION reactos/system32 FOR all)
|