ladybird/Userland/Games/Hearts/CMakeLists.txt
Gunnar Beutner 87ace131bc Hearts: Add support for playing more than one hand
This changes the game so that more than one hand can be played. Once
one player has 100 or more points the game ends. A score card is shown
between each hand.

Fixes #7374.
2021-05-25 21:05:35 +02:00

14 lines
259 B
CMake

compile_gml(Hearts.gml HeartsGML.h hearts_gml)
set(SOURCES
Game.cpp
main.cpp
Player.cpp
ScoreCard.cpp
SettingsDialog.cpp
HeartsGML.h
)
serenity_app(Hearts ICON app-hearts)
target_link_libraries(Hearts LibCards LibGUI LibGfx LibCore)