* Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
[reactos.git] / base / applications / games / solitaire / CMakeLists.txt
1
2 set_cpp(WITH_RUNTIME)
3
4 include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/cardlib)
5
6 list(APPEND SOURCE
7 solcreate.cpp
8 solgame.cpp
9 solitaire.cpp
10 solitaire.h)
11
12 add_executable(sol ${SOURCE} rsrc.rc)
13 target_link_libraries(sol cardlib)
14 set_module_type(sol win32gui UNICODE)
15 add_importlibs(sol advapi32 comctl32 user32 gdi32 msvcrt kernel32)
16 add_pch(sol solitaire.h SOURCE)
17 add_cd_file(TARGET sol DESTINATION reactos/system32 FOR all)