mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
17518ef89b
We're mixing a lot of styles in the Meson build files. This is an attempt at making everything slightly more consistent in terms of whitespace and indentation.
20 lines
609 B
Meson
20 lines
609 B
Meson
iconbrowser_sources = [
|
|
'main.c',
|
|
'iconbrowserapp.c',
|
|
'iconbrowserwin.c',
|
|
'iconstore.c'
|
|
]
|
|
|
|
iconbrowser_resources = gnome.compile_resources('iconbrowser_resources',
|
|
'iconbrowser.gresource.xml',
|
|
source_dir: '.')
|
|
|
|
executable('gtk4-icon-browser',
|
|
iconbrowser_sources, iconbrowser_resources,
|
|
dependencies: libgtk_dep,
|
|
include_directories: confinc,
|
|
gui_app: true,
|
|
install: true)
|
|
|
|
install_data('gtk4-icon-browser.desktop', install_dir: gtk_applicationsdir)
|