mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-07 18:14:35 +00:00
22c6a4085f
Having the opencv feature enabled would lead to the opencv3 dependency being required which failed with only opencv4 being available. Instead don't require anything and error out at the end if the feature was enabled but no dependency was found.
35 lines
1 KiB
Meson
35 lines
1 KiB
Meson
opencv_sources = [
|
|
'gstopencvutils.cpp',
|
|
'gstopencvvideofilter.cpp',
|
|
]
|
|
|
|
opencv_headers = [
|
|
'opencv-prelude.h',
|
|
'gstopencvutils.h',
|
|
'gstopencvvideofilter.h',
|
|
]
|
|
|
|
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)
|
|
endif
|
|
if opencv_dep.found()
|
|
gstopencv = library('gstopencv-' + api_version,
|
|
opencv_sources,
|
|
c_args : gst_plugins_bad_args + ['-DBUILDING_GST_OPENCV'],
|
|
include_directories : [configinc, libsinc],
|
|
version : libversion,
|
|
soversion : soversion,
|
|
darwin_versions : osxversion,
|
|
install : true,
|
|
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep],
|
|
)
|
|
|
|
gstopencv_dep = declare_dependency(link_with: gstopencv,
|
|
include_directories : [libsinc],
|
|
dependencies : [gstvideo_dep, opencv_dep])
|
|
|
|
install_headers(opencv_headers, subdir : 'gstreamer-1.0/gst/opencv')
|
|
elif get_option('opencv').enabled()
|
|
error('OpenCV support enabled but required dependencies were not found.')
|
|
endif
|