ladybird/Userland/Games/2048/CMakeLists.txt
Gunnar Beutner 631d36fd98 Everywhere: Add component declarations
This adds component declarations so that users can select to not build
certain parts of the OS.
2021-06-17 11:03:51 +02:00

16 lines
215 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 LibGUI)