mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 11:20:12 +00:00
23 lines
394 B
Meson
23 lines
394 B
Meson
|
|
widgetfactory_sources = [
|
|
'widget-factory.c'
|
|
]
|
|
|
|
|
|
|
|
widgetfactory_resources = gnome.compile_resources(
|
|
'widgetfactory_resources',
|
|
'widget-factory.gresource.xml',
|
|
source_dir: '.'
|
|
)
|
|
|
|
widget_factory = executable(
|
|
'gtk3-widget-factory',
|
|
widgetfactory_sources,
|
|
widgetfactory_resources,
|
|
dependencies: libgtk_dep,
|
|
link_with: libgtk,
|
|
include_directories : confinc,
|
|
gui_app: true
|
|
)
|