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:
parent
a26cce1833
commit
da7cf85e3c
@ -1,3 +1,7 @@
|
|||||||
|
if get_option('opencv').disabled()
|
||||||
|
subdir_done()
|
||||||
|
endif
|
||||||
|
|
||||||
gstopencv_sources = [
|
gstopencv_sources = [
|
||||||
'gstcvdilate.cpp',
|
'gstcvdilate.cpp',
|
||||||
'gstcvdilateerode.cpp',
|
'gstcvdilateerode.cpp',
|
||||||
@ -110,4 +114,6 @@ if opencv_found
|
|||||||
install_dir : plugins_install_dir,
|
install_dir : plugins_install_dir,
|
||||||
)
|
)
|
||||||
pkgconfig.generate(gstopencv, install_dir : plugins_pkgconfig_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
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user