meson: fix opencv=disabled case if opencv is available on the system

ext/opencv/meson.build:103:2: ERROR:  Unknown variable "gstopencv_dep".
This commit is contained in:
Tim-Philipp Müller 2018-12-17 18:58:52 +00:00
parent a26cce1833
commit da7cf85e3c

View file

@ -1,3 +1,7 @@
if get_option('opencv').disabled()
subdir_done()
endif
gstopencv_sources = [
'gstcvdilate.cpp',
'gstcvdilateerode.cpp',
@ -110,4 +114,6 @@ if opencv_found
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstopencv, install_dir : plugins_pkgconfig_install_dir)
elif get_option('opencv').enabled()
error('OpenCV support enabled but required dependencies were not found.')
endif