1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:47:44 +00:00

Meta: Rename compile_gml to stringify_gml

This is what this function really does, it doesn't compile anything.
This commit is contained in:
kleines Filmröllchen 2023-08-11 15:15:17 +02:00 committed by Jelle Raaijmakers
parent e2dbce8fd7
commit 1e67435ff5
51 changed files with 116 additions and 116 deletions

View file

@ -3,7 +3,7 @@ serenity_component(
TARGETS ModelGallery
)
compile_gml(./BasicModelTab.gml BasicModelTabGML.h basic_model_tab_gml)
stringify_gml(./BasicModelTab.gml BasicModelTabGML.h basic_model_tab_gml)
set(SOURCES
main.cpp

View file

@ -3,14 +3,14 @@ serenity_component(
TARGETS WidgetGallery
)
compile_gml(./GalleryGML/Window.gml WindowGML.h window_gml)
compile_gml(./GalleryGML/BasicsTab.gml BasicsTabGML.h basics_tab_gml)
compile_gml(./GalleryGML/SlidersTab.gml SlidersTabGML.h sliders_tab_gml)
compile_gml(./GalleryGML/CursorsTab.gml CursorsTabGML.h cursors_tab_gml)
compile_gml(./GalleryGML/IconsTab.gml IconsTabGML.h icons_tab_gml)
compile_gml(./GalleryGML/WizardsTab.gml WizardsTabGML.h wizards_tab_gml)
compile_gml(DemoWizardPage1.gml DemoWizardPage1GML.h demo_wizard_page_1_gml)
compile_gml(DemoWizardPage2.gml DemoWizardPage2GML.h demo_wizard_page_2_gml)
stringify_gml(./GalleryGML/Window.gml WindowGML.h window_gml)
stringify_gml(./GalleryGML/BasicsTab.gml BasicsTabGML.h basics_tab_gml)
stringify_gml(./GalleryGML/SlidersTab.gml SlidersTabGML.h sliders_tab_gml)
stringify_gml(./GalleryGML/CursorsTab.gml CursorsTabGML.h cursors_tab_gml)
stringify_gml(./GalleryGML/IconsTab.gml IconsTabGML.h icons_tab_gml)
stringify_gml(./GalleryGML/WizardsTab.gml WizardsTabGML.h wizards_tab_gml)
stringify_gml(DemoWizardPage1.gml DemoWizardPage1GML.h demo_wizard_page_1_gml)
stringify_gml(DemoWizardPage2.gml DemoWizardPage2GML.h demo_wizard_page_2_gml)
set(SOURCES
main.cpp