diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-07-21 19:58:31 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-07-21 19:58:31 +0200 |
commit | 5a514d891db203b803a37c2110184f537fcd5608 (patch) | |
tree | 0c85f179d5cfeb471f3227bd4a94998e3aaf4ee1 /meson.build | |
parent | 408791709f23be34de957320384d02b228ea488f (diff) | |
parent | 35c7b263d4fc6910be51005193095cfbdeaa969a (diff) |
Merge branch 'release/debian/46.0-1'HEADdebian/46.0-1master
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') |