mirror of
https://github.com/reactos/reactos.git
synced 2025-04-18 19:47:14 +00:00

Use the shell about dialog for solitaire and spider solitaire. This increases visual consistency throughout the operating system and matches the behavior of the game from Windows XP. - Use the shell about dialog instead of a plain MessageBox. - Since the shell about dialog can only handle two lines of text, shorten the message dialog text to two lines.
14 lines
491 B
CMake
14 lines
491 B
CMake
|
|
list(APPEND SOURCE
|
|
spider.cpp
|
|
spigame.cpp
|
|
spider.h)
|
|
|
|
add_rc_deps(rsrc.rc ${CMAKE_CURRENT_SOURCE_DIR}/spider.ico)
|
|
add_executable(spider ${SOURCE} rsrc.rc)
|
|
target_link_libraries(spider cardlib)
|
|
target_include_directories(spider PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
add_pch(spider spider.h SOURCE)
|
|
set_module_type(spider win32gui UNICODE)
|
|
add_importlibs(spider advapi32 comctl32 shell32 user32 gdi32 msvcrt kernel32)
|
|
add_cd_file(TARGET spider DESTINATION reactos/system32 FOR all)
|