diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-06-30 20:46:13 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-06-30 20:46:13 +0200 |
commit | 9b3a82a302bd88c64bb714b009d223f8683f7178 (patch) | |
tree | 9c387fef03143f2f5f809672bf51e6495f874050 /meson.build | |
parent | a675d0fb9f307b714d0b9cf19690d2b08b666d7c (diff) | |
parent | bca1cc8681bbaf662dabc961f84b06adc1255e08 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/meson.build b/meson.build index 68266f3..ef5bc69 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project ('simple-scan', ['vala', 'c'], - version: '44.0', + version: '46.0', license: 'GPLv3+', default_options: [ 'warning_level=1', @@ -20,10 +20,10 @@ icondir = join_paths (datadir, 'simple-scan', 'icons') # Dependencies glib_dep = dependency ('glib-2.0', version: '>= 2.38') -gtk_dep = dependency ('gtk+-3.0', version: '>=3.24') +gtk_dep = dependency ('gtk4', version: '>=4.10.0') gmodule_dep = dependency ('gmodule-export-2.0') gthread_dep = dependency ('gthread-2.0') -libhandy_dep = dependency ('libhandy-1', version: '>= 1.6.0', required: false) +libadwaita_dep = dependency('libadwaita-1', version: '>= 1.2.0') zlib_dep = dependency ('zlib') cairo_dep = dependency ('cairo') gdk_pixbuf_dep = dependency ('gdk-pixbuf-2.0') @@ -36,26 +36,6 @@ sane_dep = dependency ('sane-backends') msgfmt = find_program ('msgfmt') itstool = find_program ('itstool') -libhandy_subproj = libhandy_dep -if not libhandy_dep.found() - libhandy_subproj = subproject( - 'libhandy', - default_options: [ - 'examples=false', - 'glade_catalog=disabled', - 'tests=false', - ] - ) - - # When using libhandy as subproject, make sure we get the VAPI file - libhandy_dep = declare_dependency( - dependencies: [ - libhandy_subproj.get_variable('libhandy_dep'), - libhandy_subproj.get_variable('libhandy_vapi'), - ] - ) -endif - subdir ('po') subdir ('data') subdir ('help') |