1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:07:46 +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

@ -8,10 +8,10 @@ How to use GML in SerenityOS C++ applications
## CMake
Include `compile_gml()` your applications CMake file. The header file name and GML string name are not fixed but must follow this convention.
Include `stringify_gml()` your applications CMake file. The header file name and GML string name are not fixed but must follow this convention.
```cmake
compile_gml(MyApp.gml MyAppGML.h my_app_gml)
stringify_gml(MyApp.gml MyAppGML.h my_app_gml)
```
Include the name of the header file that will be compiled from your GML file in your `SOURCES`.