Message ID | 20200414180229.10320-2-ariel@vanguardiasur.com.ar |
---|---|
State | Superseded |
Headers | show |
Series |
|
Related | show |
diff --git a/meson.build b/meson.build index c6e6a93..a2dda79 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libcamera', 'c', 'cpp', - meson_version : '>= 0.47', + meson_version : '>= 0.51', version : '0.0.0', default_options : [ 'werror=true',
This is needed to use the 'modules' keyword argument in pymod.find_installation(). This function in the Python module will check for a Python installation with the specified modules installed. Libcamera runs a few python scripts during build, which contain python module dependencies that should be checked. NOTE: If you don't have a recent enough meson in your distribution, you can always install or upgrade your version using pip3. $ pip3 install --user meson $ pip3 install --user --upgrade meson Signed-off-by: Ariel D'Alessandro <ariel@vanguardiasur.com.ar> --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)