From 77f28ee3e71d1c5bd8278967963b08b226515dd1 Mon Sep 17 00:00:00 2001 From: Nicola Murino Date: Sun, 18 Oct 2020 17:59:44 +0200 Subject: [PATCH] opencv: allow compilation against 4.5.x Part-of: --- ext/opencv/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opencv/meson.build b/ext/opencv/meson.build index 074272a..e3d1865 100644 --- a/ext/opencv/meson.build +++ b/ext/opencv/meson.build @@ -66,7 +66,7 @@ if opencv_found endif endforeach else - opencv_dep = dependency('opencv4', version : ['>= 4.0.0', '< 4.5.0'], required : false) + opencv_dep = dependency('opencv4', version : ['>= 4.0.0', '< 4.6.0'], required : false) opencv_found = opencv_dep.found() if opencv_found foreach h : libopencv4_headers -- 2.7.4