1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:57:35 +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

@ -4,12 +4,12 @@ serenity_component(
TARGETS DisplaySettings
)
compile_gml(BackgroundSettings.gml BackgroundSettingsGML.h background_settings_gml)
compile_gml(DesktopSettings.gml DesktopSettingsGML.h desktop_settings_gml)
compile_gml(EffectsSettings.gml EffectsSettingsGML.h effects_settings_gml)
compile_gml(FontSettings.gml FontSettingsGML.h font_settings_gml)
compile_gml(MonitorSettings.gml MonitorSettingsGML.h monitor_settings_window_gml)
compile_gml(ThemesSettings.gml ThemesSettingsGML.h themes_settings_gml)
stringify_gml(BackgroundSettings.gml BackgroundSettingsGML.h background_settings_gml)
stringify_gml(DesktopSettings.gml DesktopSettingsGML.h desktop_settings_gml)
stringify_gml(EffectsSettings.gml EffectsSettingsGML.h effects_settings_gml)
stringify_gml(FontSettings.gml FontSettingsGML.h font_settings_gml)
stringify_gml(MonitorSettings.gml MonitorSettingsGML.h monitor_settings_window_gml)
stringify_gml(ThemesSettings.gml ThemesSettingsGML.h themes_settings_gml)
set(SOURCES
BackgroundSettingsWidget.cpp