[libcamera-devel] libcamera: Bump minimum meson version to 0.50

Message ID 20190428105753.14794-1-niklas.soderlund@ragnatech.se
State Superseded
Headers show
Series
  • [libcamera-devel] libcamera: Bump minimum meson version to 0.50
Related show

Commit Message

Niklas Söderlund April 28, 2019, 10:57 a.m. UTC
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@ragnatech.se>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

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',