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>
This commit is contained in:
Kieran Bingham 2018-11-30 09:43:19 +00:00
parent 9cb17c2743
commit b15e378851

View file

@ -1,4 +1,5 @@
project('libcamera - supporting complex camera pipelines', 'c', 'cpp',
meson_version: '>= 0.40',
version : '0.1',
license : 'LGPL 2.1+')