mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
19 lines
541 B
CMake
19 lines
541 B
CMake
|
|
set_cpp(WITH_RUNTIME)
|
|
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/3rdparty/cardlib
|
|
${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
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)
|
|
add_pch(spider spider.h SOURCE)
|
|
set_module_type(spider win32gui UNICODE)
|
|
add_importlibs(spider advapi32 comctl32 user32 gdi32 msvcrt kernel32)
|
|
add_cd_file(TARGET spider DESTINATION reactos/system32 FOR all)
|