1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-13 19:12:18 +00:00
serenity/Userland/Games/2048/CMakeLists.txt
2022-01-13 03:45:17 -08:00

15 lines
244 B
CMake

serenity_component(
2048
RECOMMENDED
TARGETS 2048
)
set(SOURCES
BoardView.cpp
Game.cpp
GameSizeDialog.cpp
main.cpp
)
serenity_app(2048 ICON app-2048)
target_link_libraries(2048 LibConfig LibGUI LibMain LibDesktop)