ladybird/Userland/Demos/ModelGallery/CMakeLists.txt
sin-ack b30b7de2d2 ModelGallery: Add the new Model Gallery application :^)
This is an application analogous to WidgetGallery, in that it tests
various capabilities of LibGUI models. Right now it is pretty bare, but
as more work towards LibGUI models is done regarding persistent model
indices, more demos will be added.
2021-08-23 12:25:26 +04:30

18 lines
331 B
CMake

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