From ae821f523e34b77135f865011266ed7d6540ba1c 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 --- 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 074272a9c..e3d1865da 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.28.0