mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
1e67435ff5
This is what this function really does, it doesn't compile anything.
23 lines
474 B
CMake
23 lines
474 B
CMake
serenity_component(
|
|
2048
|
|
RECOMMENDED
|
|
TARGETS 2048
|
|
)
|
|
|
|
stringify_gml(GameSizeDialog.gml GameSizeDialogGML.h game_size_dialog_gml)
|
|
stringify_gml(GameWindow.gml GameWindowGML.h game_window_gml)
|
|
|
|
set(SOURCES
|
|
BoardView.cpp
|
|
Game.cpp
|
|
GameSizeDialog.cpp
|
|
main.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
GameSizeDialogGML.h
|
|
GameWindowGML.h
|
|
)
|
|
|
|
serenity_app(2048 ICON app-2048)
|
|
target_link_libraries(2048 PRIVATE LibConfig LibCore LibGfx LibGUI LibMain LibDesktop)
|