From 185dfd592d92d523971ea059edc6c34a9be9b5e3 Mon Sep 17 00:00:00 2001 From: Jordan Bayles Date: Mon, 24 Jun 2019 13:38:00 -0700 Subject: [PATCH] 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. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 106e17f6a..ece8aa4d5 100644 --- a/meson.build +++ b/meson.build @@ -7,7 +7,7 @@ project( 'cpp_std=c++11', 'warning_level=1'], license : 'Public Domain', - meson_version : '>= 0.41.1') + meson_version : '>= 0.50.0') jsoncpp_ver_arr = meson.project_version().split('.') jsoncpp_major_version = jsoncpp_ver_arr[0]