1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 05:54:58 +00:00
serenity/Userland/Demos/ModelGallery/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
382 B
CMake

serenity_component(
ModelGallery
TARGETS ModelGallery
)
stringify_gml(./BasicModelTab.gml BasicModelTabGML.h basic_model_tab_gml)
set(SOURCES
main.cpp
GalleryWidget.cpp
BasicModel.cpp
)
set(GENERATED_SOURCES
BasicModelTabGML.h
)
serenity_app(ModelGallery ICON app-model-gallery)
target_link_libraries(ModelGallery PRIVATE LibCore LibGUI LibGfx LibMain)