From 657d8b8812f16b2c377e5b77ff2ffcc4046a7dce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 16 Jul 2017 10:20:56 +0200 Subject: New upstream version 3.25.1 --- meson.build | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 meson.build (limited to 'meson.build') 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') -- cgit v1.2.3