1
2include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
3
4list(APPEND SOURCE
5    gui.c
6    misc.c
7    shutdown.c
8    precomp.h)
9
10add_executable(shutdown ${SOURCE} shutdown.rc)
11set_module_type(shutdown win32cui UNICODE)
12target_link_libraries(shutdown conutils ${PSEH_LIB})
13add_importlibs(shutdown advapi32 user32 powrprof msvcrt kernel32)
14add_pch(shutdown precomp.h SOURCE)
15add_cd_file(TARGET shutdown DESTINATION reactos/system32 FOR all)
16