meson: added minimum meson version requirement
authorSubhransu Mohanty <smohantty@gmail.com>
Fri, 19 Jun 2020 01:26:43 +0000 (10:26 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Sun, 21 Jun 2020 21:28:17 +0000 (06:28 +0900)
meson.build

index 7677228..5d2972e 100644 (file)
@@ -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')