Skip to content

Commit 185dfd5

Browse files
committed
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.
1 parent 3e4c8f8 commit 185dfd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ project(
77
'cpp_std=c++11',
88
'warning_level=1'],
99
license : 'Public Domain',
10-
meson_version : '>= 0.41.1')
10+
meson_version : '>= 0.50.0')
1111

1212
jsoncpp_ver_arr = meson.project_version().split('.')
1313
jsoncpp_major_version = jsoncpp_ver_arr[0]

0 commit comments

Comments
 (0)