mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-20 13:44:05 +08:00
Update meson build requirement
Currently, we have a build type warning due to listing a requirement for meson build version that doesn't implement features we use in our build file. The minimum meson build version required is actually 0.50.0, so this PR updates our meson.build file to depend on 0.50.0.
This commit is contained in:
@@ -7,7 +7,7 @@ project(
|
|||||||
'cpp_std=c++11',
|
'cpp_std=c++11',
|
||||||
'warning_level=1'],
|
'warning_level=1'],
|
||||||
license : 'Public Domain',
|
license : 'Public Domain',
|
||||||
meson_version : '>= 0.41.1')
|
meson_version : '>= 0.50.0')
|
||||||
|
|
||||||
jsoncpp_ver_arr = meson.project_version().split('.')
|
jsoncpp_ver_arr = meson.project_version().split('.')
|
||||||
jsoncpp_major_version = jsoncpp_ver_arr[0]
|
jsoncpp_major_version = jsoncpp_ver_arr[0]
|
||||||
|
Reference in New Issue
Block a user