ladybird/Userland/Games/Hearts/CMakeLists.txt
Josh Perry d27616cf36 Hearts: Allow player to set their name
Added a new settings dialog to Hearts with a textbox to allow the
player to set a name, which is persisted in the Hearts config file.
2021-05-23 20:43:53 +01:00

13 lines
241 B
CMake

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