1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-09-13 19:37:34 +00:00

2048: Convert to GML

This commit is contained in:
implicitfield 2022-10-17 20:03:09 +03:00 committed by Linus Groh
parent a6ba82fc49
commit 5d77daebf3
5 changed files with 125 additions and 44 deletions

View file

@ -4,6 +4,9 @@ serenity_component(
TARGETS 2048
)
compile_gml(GameSizeDialog.gml GameSizeDialogGML.h game_size_dialog_gml)
compile_gml(GameWindow.gml GameWindowGML.h game_window_gml)
set(SOURCES
BoardView.cpp
Game.cpp
@ -11,5 +14,10 @@ set(SOURCES
main.cpp
)
set(GENERATED_SOURCES
GameSizeDialogGML.h
GameWindowGML.h
)
serenity_app(2048 ICON app-2048)
target_link_libraries(2048 LibConfig LibGUI LibMain LibDesktop)