1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:08:12 +00:00
serenity/Userland/DevTools/GMLPlayground/CMakeLists.txt
Sam Atkins d443a51b50 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. :^)
2023-01-13 13:37:19 +01:00

18 lines
428 B
CMake

serenity_component(
GMLPlayground
RECOMMENDED
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)