meson: bump glib requirement to 2.62 as we are already using 2.62 API

This commit is contained in:
George Kiagiadakis 2021-06-15 12:04:08 +03:00
parent 6c592f3322
commit 863c2d496a

View file

@ -39,10 +39,10 @@ endif
cc = meson.get_compiler('c')
glib_req_version = '>= 2.58'
glib_req_version = '>= 2.62'
add_project_arguments([
'-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_58',
'-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_58',
'-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_62',
'-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_62',
], language: 'c'
)