1 2list(APPEND SOURCE 3 solcreate.cpp 4 solgame.cpp 5 solundo.cpp 6 solitaire.cpp 7 solitaire.h) 8 9add_rc_deps(rsrc.rc ${CMAKE_CURRENT_SOURCE_DIR}/solitaire.ico) 10add_executable(sol ${SOURCE} rsrc.rc) 11target_link_libraries(sol cardlib) 12set_module_type(sol win32gui UNICODE) 13add_importlibs(sol advapi32 comctl32 shell32 user32 gdi32 msvcrt kernel32) 14add_pch(sol solitaire.h SOURCE) 15add_cd_file(TARGET sol DESTINATION reactos/system32 FOR all) 16