1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00
serenity/Userland/DevTools/GMLPlayground/CMakeLists.txt
kleines Filmröllchen 1e67435ff5 Meta: Rename compile_gml to stringify_gml
This is what this function really does, it doesn't compile anything.
2023-08-11 21:33:48 +02:00

19 lines
459 B
CMake

serenity_component(
GMLPlayground
RECOMMENDED
TARGETS GMLPlayground
)
stringify_gml(GMLPlaygroundWindow.gml GMLPlaygroundWindowGML.h gml_playground_window_gml)
set(SOURCES
MainWidget.cpp
main.cpp
)
set(GENERATED_SOURCES
GMLPlaygroundWindowGML.h
)
serenity_app(GMLPlayground ICON app-gml-playground)
target_link_libraries(GMLPlayground PRIVATE LibConfig LibCore LibDesktop LibFileSystemAccessClient LibGfx LibGUI LibMain LibSyntax)