[libcamera-devel] [PATCH] libcamera: Bump minimum meson version to 0.50
Niklas Söderlund
niklas.soderlund at ragnatech.se
Sun Apr 28 12:57:53 CEST 2019
Building the documentation reports warnings,
WARNING: Project targetting '>= 0.40' but tried to use feature introduced in '0.50.0': install arg in configure_file
WARNING: Project specifies a minimum meson_version '>= 0.40' but uses features which were added in newer versions:
* 0.50.0: {'install arg in configure_file'}
Due to the usage of the construction configure_file { install: ... } in
Documentation/meason.build which is introduced in meson 0.50. Fix this
by increasing the minimum version of meson supported to 0.50.
Fixes: 53c4d4c34fc49b95 ("Documentation: Generate source code documentation using Doxygen")
Signed-off-by: Niklas Söderlund <niklas.soderlund at ragnatech.se>
---
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index d272ff33b1009fb6..abe58d040e5d1da3 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libcamera', 'c', 'cpp',
- meson_version: '>= 0.40',
+ meson_version: '>= 0.50',
version : '0.1',
default_options: [
'werror=true',
--
2.21.0
More information about the libcamera-devel
mailing list