reactos/base/applications/games/winmine/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

15 lines
391 B
CMake

include_directories(${CMAKE_CURRENT_SOURCE_DIR})
list(APPEND SOURCE
main.c
dialog.c
main.h)
add_executable(winmine ${SOURCE} rsrc.rc)
set_module_type(winmine win32gui)
target_link_libraries(winmine wine)
add_importlibs(winmine user32 gdi32 advapi32 shell32 msvcrt kernel32 ntdll)
add_pch(winmine main.h SOURCE)
add_cd_file(TARGET winmine DESTINATION reactos/system32 FOR all)