From b15e378851feefa29e43e0fab55a9db946c11dc8 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Fri, 30 Nov 2018 09:43:19 +0000 Subject: meson: Describe minimum meson version requirements We utilise 'add_project_arguments' which is only available in version 0.36 and 'build_by_default' which is only available in version 0.40 of meson. Add this dependancy to the project requirements. Reported-by: Jacopo Mondi Acked-by: Jacopo Mondi Signed-off-by: Kieran Bingham --- meson.build | 1 + 1 file changed, 1 insertion(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 1e2bf956..e0aeefa3 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,5 @@ project('libcamera - supporting complex camera pipelines', 'c', 'cpp', + meson_version: '>= 0.40', version : '0.1', license : 'LGPL 2.1+') -- cgit v1.2.1