diff options
author | Manatsawin Hanmongkolchai <[email protected]> | 2022-11-14 20:18:24 +0700 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-04-20 18:07:49 +0200 |
commit | 06de02ac5acb699156401bcf48009a670f98033e (patch) | |
tree | cf48c8a75f451704d01262d27f9ca406782a82b2 /meson.build | |
parent | bbcbca9eb1240c3493895dbdcf03a4b2c2803d29 (diff) | |
download | eom-06de02ac5acb699156401bcf48009a670f98033e.tar.bz2 eom-06de02ac5acb699156401bcf48009a670f98033e.tar.xz |
Reduce requirement to meson 0.59
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index bbb0f92..0ec3e50 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('eom','c', version: '1.27.0', - meson_version: '>=0.64.0', + meson_version: '>=0.59.0', license: 'GPLv2+', ) @@ -40,7 +40,7 @@ shared_mime_info = dependency('shared-mime-info', version : '>= 0.20') libpeas = dependency('libpeas-1.0', version : '>= ' + libpeas_required) libpeas_gtk = dependency('libpeas-gtk-1.0', version : '>= ' + libpeas_required) xml = dependency('libxml-2.0', version: '>=2.0') -gobject_introspection = dependency('gobject-introspection-1.0', version : '>= 0.9.3', required : false) +gobject_introspection = dependency('gobject-introspection-1.0', version : '>= 0.9.3', required : get_option('introspection')) xmp = dependency('exempi-2.0', version: '>= 1.99.5', required : get_option('xmp')) exif = dependency('libexif', version: '>= 0.6.14', required : get_option('libexif')) rsvg = dependency('librsvg-2.0', version: '>= 2.36.2', required : get_option('librsvg'), not_found_message : 'LIBRSVG support disabled, svg files will not scale') |