ladybird/Userland/Applications/Run/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

20 lines
306 B
CMake

serenity_component(
Run
REQUIRED
TARGETS Run
)
stringify_gml(Run.gml RunGML.h run_gml)
set(SOURCES
main.cpp
RunWindow.cpp
)
set(GENERATED_SOURCES
RunGML.h
)
serenity_app(Run ICON app-run)
target_link_libraries(Run PRIVATE LibCore LibFileSystem LibDesktop LibGfx LibGUI LibMain)