summaryrefslogtreecommitdiff
path: root/Userland/Games/Spider/CMakeLists.txt
blob: 2f266b8a5ef967396b95963f3456c31a0e462d3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
serenity_component(
    Spider
    RECOMMENDED
    TARGETS Spider
)

compile_gml(Spider.gml SpiderGML.h spider_gml)

set(SOURCES
    Game.cpp
    main.cpp
)

set(GENERATED_SOURCES
    SpiderGML.h
)

serenity_app(Spider ICON app-spider)
target_link_libraries(Spider PRIVATE LibCards LibGUI LibGfx LibCore LibConfig LibMain)