1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 06:17: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,8 +4,8 @@ serenity_component(
TARGETS 2048
)
compile_gml(GameSizeDialog.gml GameSizeDialogGML.h game_size_dialog_gml)
compile_gml(GameWindow.gml GameWindowGML.h game_window_gml)
stringify_gml(GameSizeDialog.gml GameSizeDialogGML.h game_size_dialog_gml)
stringify_gml(GameWindow.gml GameWindowGML.h game_window_gml)
set(SOURCES
BoardView.cpp

View file

@ -4,8 +4,8 @@ serenity_component(
TARGETS Flood
)
compile_gml(FloodWindow.gml FloodWindowGML.h flood_window_gml)
compile_gml(SettingsDialog.gml SettingsDialogGML.h settings_dialog_gml)
stringify_gml(FloodWindow.gml FloodWindowGML.h flood_window_gml)
stringify_gml(SettingsDialog.gml SettingsDialogGML.h settings_dialog_gml)
set(SOURCES
Board.cpp

View file

@ -4,7 +4,7 @@ serenity_component(
TARGETS GameOfLife
)
compile_gml(GameOfLife.gml GameOfLifeGML.h game_of_life_gml)
stringify_gml(GameOfLife.gml GameOfLifeGML.h game_of_life_gml)
set(SOURCES
main.cpp

View file

@ -5,7 +5,7 @@ serenity_component(
TARGETS Hearts
)
compile_gml(Hearts.gml HeartsGML.h hearts_gml)
stringify_gml(Hearts.gml HeartsGML.h hearts_gml)
set(SOURCES
Game.cpp

View file

@ -4,7 +4,7 @@ serenity_component(
TARGETS MasterWord
)
compile_gml(MasterWord.gml MasterWordGML.h master_word_gml)
stringify_gml(MasterWord.gml MasterWordGML.h master_word_gml)
set(SOURCES
main.cpp

View file

@ -4,8 +4,8 @@ serenity_component(
TARGETS Minesweeper
)
compile_gml(MinesweeperCustomGameWindow.gml MinesweeperCustomGameWindowGML.h minesweeper_custom_game_window_gml)
compile_gml(MinesweeperWindow.gml MinesweeperWindowGML.h minesweeper_window_gml)
stringify_gml(MinesweeperCustomGameWindow.gml MinesweeperCustomGameWindowGML.h minesweeper_custom_game_window_gml)
stringify_gml(MinesweeperWindow.gml MinesweeperWindowGML.h minesweeper_window_gml)
set(SOURCES
CustomGameDialog.cpp

View file

@ -4,7 +4,7 @@ serenity_component(
TARGETS Snake
)
compile_gml(Snake.gml SnakeGML.h snake_gml)
stringify_gml(Snake.gml SnakeGML.h snake_gml)
set(SOURCES
Game.cpp

View file

@ -4,7 +4,7 @@ serenity_component(
TARGETS Solitaire
)
compile_gml(Solitaire.gml SolitaireGML.h solitaire_gml)
stringify_gml(Solitaire.gml SolitaireGML.h solitaire_gml)
set(SOURCES
Game.cpp

View file

@ -4,7 +4,7 @@ serenity_component(
TARGETS Spider
)
compile_gml(Spider.gml SpiderGML.h spider_gml)
stringify_gml(Spider.gml SpiderGML.h spider_gml)
set(SOURCES
Game.cpp