ladybird/Userland/Games/2048/CMakeLists.txt
Pedro Pereira fb5ea617f1 2048: Port to LibMain
Simplified two pledge() and two unveil() by using TRY().
2021-11-22 23:44:55 +01:00

16 lines
233 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)