mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-28 05:52:53 +00:00
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.
17 lines
331 B
CMake
17 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)
|