diff options
-rw-r--r-- | README.rst | 9 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 10 insertions, 1 deletions
@@ -46,6 +46,15 @@ A C++ toolchain: [required] for libcamera: [required] meson ninja-build python3-yaml + meson (>= 0.47) ninja-build python3-yaml + + If your distribution doesn't provide a recent enough version of meson, + you can install or upgrade it using pip3. + + .. code:: + + pip3 install --user meson + pip3 install --user --upgrade meson for device hotplug enumeration: [optional] pkg-config libudev-dev diff --git a/meson.build b/meson.build index 37cf4d66..0bbd24b2 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libcamera', 'c', 'cpp', - meson_version : '>= 0.40', + meson_version : '>= 0.47', version : '0.0.0', default_options : [ 'werror=true', |