1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:17:35 +00:00
serenity/Games/2048/CMakeLists.txt
AnotherTest 5619ed1dc6 2048: Make board size and target tile configurable
This adds a "settings" option that allows the user to configure the
board size and target tile, and optionally save them to a config file.
Closes #3219.
2020-08-21 11:45:46 +02:00

9 lines
136 B
CMake

set(SOURCES
BoardView.cpp
Game.cpp
GameSizeDialog.cpp
main.cpp
)
serenity_bin(2048)
target_link_libraries(2048 LibGUI)