meson: allow the user to disable opencv

Allow the user to really disable opencv through meson (i.e.
-Dopencv=disabled).

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1533>
This commit is contained in:
Fabrice Fontaine 2020-08-22 23:33:48 +02:00 committed by Tim-Philipp Müller
parent b48702e4bc
commit 833a65cc3c

View file

@ -9,6 +9,11 @@ opencv_headers = [
'gstopencvvideofilter.h',
]
if get_option('opencv').disabled()
gstopencv_dep = disabler()
subdir_done()
endif
opencv_dep = dependency('opencv', version : '>= 3.0.0', required : false)
if not opencv_dep.found()
opencv_dep = dependency('opencv4', version : '>= 4.0.0', required : false)