ladybird/Userland/Games/Spider/CMakeLists.txt
Jamie Mansfield 3f8857cd21 Games: Add Spider
Scoring is designed to mimic Microsoft's implementation - starting at
500, decreasing by 1 every move, and increasing by 100 for every full
stack.

Fixes GH-5319.
2021-06-24 10:32:53 +02:00

17 lines
272 B
CMake

serenity_component(
Spider
RECOMMENDED
TARGETS Spider
)
compile_gml(Spider.gml SpiderGML.h spider_gml)
set(SOURCES
Game.cpp
main.cpp
SpiderGML.h
)
serenity_app(Spider ICON app-spider)
target_link_libraries(Spider LibCards LibGUI LibGfx LibCore)