summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2018-11-30 09:43:19 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2018-11-30 11:28:14 +0000
commitb15e378851feefa29e43e0fab55a9db946c11dc8 (patch)
tree45798720adf8774c3b2834d7e31d4e2db82d235f /meson.build
parent9cb17c27431e6910c31b3e120d31900dc5346d1a (diff)
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 <jacopo@mondi.org> Acked-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build1
1 files changed, 1 insertions, 0 deletions
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+')