gtk/demos/widget-factory/meson.build
2017-05-03 15:10:50 +01:00

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
)