1
2add_definitions(-D_DLL -D__USE_CRTIMP)
3
4list(APPEND SOURCE
5    misc.c
6    shutdown.c
7    shutdown.rc)
8
9add_executable(shutdown ${CMAKE_CURRENT_BINARY_DIR}/shutdown_precomp.h.gch ${SOURCE})
10
11add_pch(shutdown ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
12
13set_module_type(shutdown win32cui)
14add_importlibs(shutdown advapi32 user32 msvcrt kernel32)
15add_cab_target(shutdown 1)
16