mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-06 02:40:07 +00:00
082cf3553d
And fix libgtk_dep/libgdk_dep to link_with the shared lib
22 lines
403 B
Meson
22 lines
403 B
Meson
iconbrowser_sources = [
|
|
'main.c',
|
|
'iconbrowserapp.c',
|
|
'iconbrowserwin.c',
|
|
'iconstore.c'
|
|
]
|
|
|
|
iconbrowser_resources = gnome.compile_resources(
|
|
'iconbrowser_resources',
|
|
'iconbrowser.gresource.xml',
|
|
source_dir: '.'
|
|
)
|
|
|
|
iconbrowser = executable(
|
|
'gtk3-icon-browser',
|
|
iconbrowser_sources,
|
|
iconbrowser_resources,
|
|
dependencies: libgtk_dep,
|
|
include_directories : confinc,
|
|
gui_app: true
|
|
)
|