1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:57:35 +00:00

GMLPlayground: Move layout to GML

There isn't much layout right now, but it felt very wrong to not have
the GML editor use GML. :^)
This commit is contained in:
Sam Atkins 2023-01-12 17:01:28 +00:00 committed by Andreas Kling
parent 0bc591a69b
commit d443a51b50
3 changed files with 31 additions and 3 deletions

View file

@ -4,9 +4,15 @@ serenity_component(
TARGETS GMLPlayground
)
compile_gml(GMLPlaygroundWindow.gml GMLPlaygroundWindowGML.h gml_playground_window_gml)
set(SOURCES
main.cpp
)
set(GENERATED_SOURCES
GMLPlaygroundWindowGML.h
)
serenity_app(GMLPlayground ICON app-gml-playground)
target_link_libraries(GMLPlayground PRIVATE LibCore LibDesktop LibFileSystemAccessClient LibGfx LibGUI LibMain LibSyntax)