opencv/meson: Ensure variable opencv_found is set
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Tue, 9 May 2017 19:06:52 +0000 (15:06 -0400)
committerNicolas Dufresne <nicolas.dufresne@collabora.com>
Tue, 9 May 2017 19:07:51 +0000 (15:07 -0400)
If the required version is not satisfied, we need to make sure this
variable is set, otherwise build will fail.

ext/opencv/meson.build

index 7d9125cb784a561de1f2ff7935e59407692541bf..f18e0592d8608af12580e02d71fb4c29cf12e307 100644 (file)
@@ -41,9 +41,9 @@ libopencv3_headers = [
 gstopencv_cargs = ['-DGST_HAAR_CASCADES_DIR="@0@"']
 
 opencv_dep = dependency('opencv', version : ['>=2.3.0', '<=3.1.0'], required : false)
+opencv_found = opencv_dep.found()
 
-if opencv_dep.found()
-  opencv_found = true
+if opencv_found
   foreach h : libopencv2_headers
     if not cxx.has_header(h)
       message('Needed header "' + h + '" not found')