diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-07-16 10:20:58 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-07-16 10:20:58 +0200 |
commit | 0d9b56ff5bbc3b263bb24d60a5d53e09e2785532 (patch) | |
tree | be9cd87ce9f41713ed2710b9b424861155a43f33 /meson.build | |
parent | 6c629d45711b613257d30e8d5a1527003d9c3f1f (diff) | |
parent | 657d8b8812f16b2c377e5b77ff2ffcc4046a7dce (diff) |
Updated version 3.25.1 from 'upstream/3.25.1'
with Debian dir 8914d0848d9107f42ab3763c541ef1480cee0f27
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..694bbc5 --- /dev/null +++ b/meson.build @@ -0,0 +1,37 @@ +project ('simple-scan', ['vala', 'c'], + version: '3.25.1', + license: 'GPLv3+', + default_options: [ + 'warning_level=1', + 'buildtype=debugoptimized', + ], + meson_version: '>= 0.37.1') + +gnome = import ('gnome') +i18n = import ('i18n') + +# Paths +mandir = join_paths (get_option ('prefix'), get_option ('mandir')) +localedir = join_paths (get_option ('prefix'), get_option ('localedir')) +datadir = join_paths (get_option ('prefix'), get_option ('datadir')) +icondir = join_paths (datadir, 'simple-scan', 'icons') + +# Dependencies +glib_dep = dependency ('glib-2.0', version: '>= 2.38') +gtk_dep = dependency ('gtk+-3.0') +gmodule_dep = dependency ('gmodule-export-2.0') +gthread_dep = dependency ('gthread-2.0') +zlib_dep = dependency ('zlib') +cairo_dep = dependency ('cairo') +gdk_pixbuf_dep = dependency ('gdk-pixbuf-2.0') +gusb_dep = dependency ('gusb', version: '>= 0.2.7') +colord_dep = dependency ('colord', required: false) +packagekit_dep = dependency ('packagekit-glib2', required: false) +sane_dep = dependency ('sane-backends') +msgfmt = find_program ('msgfmt') +itstool = find_program ('itstool') + +subdir ('po') +subdir ('data') +subdir ('help') +subdir ('src') |