reactos/base/applications/logoff/CMakeLists.txt
Amine Khaldi f4cc19c36a [CMAKE]
- Improve several modules.

svn path=/branches/cmake-bringup/; revision=50055
2010-12-17 21:54:56 +00:00

16 lines
361 B
CMake

add_definitions(-D_DLL -D__USE_CRTIMP)
list(APPEND SOURCE
misc.c
logoff.c
logoff.rc)
add_executable(logoff ${CMAKE_CURRENT_BINARY_DIR}/logoff_precomp.h.gch ${SOURCE})
add_pch(logoff ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
set_module_type(logoff win32cui)
add_importlibs(logoff advapi32 user32 msvcrt kernel32)
add_cab_target(logoff 1)