diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2018-11-30 09:43:19 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2018-11-30 11:28:14 +0000 |
commit | b15e378851feefa29e43e0fab55a9db946c11dc8 (patch) | |
tree | 45798720adf8774c3b2834d7e31d4e2db82d235f | |
parent | 9cb17c27431e6910c31b3e120d31900dc5346d1a (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>
-rw-r--r-- | meson.build | 1 |
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+') |