From ab5ec7f64182b5f77f56a055e25dc23a95af04f1 Mon Sep 17 00:00:00 2001 From: Subhransu Mohanty Date: Fri, 19 Jun 2020 10:26:43 +0900 Subject: [PATCH] meson: added minimum meson version requirement --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7677228..5d2972e 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,9 @@ project('rlottie', 'cpp', default_options : ['warning_level=3', 'werror=true', 'cpp_std=c++14', 'optimization=s'], version : '0.1', - license : 'LGPL-v2.1') + license : 'LGPL-v2.1' + meson_version : '>=0.50' + ) add_project_arguments('-DDEMO_DIR="@0@/example/resource/"'.format(meson.current_source_dir()), language : 'cpp') -- 2.34.1