mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-25 10:04:19 +00:00
opencv: suppress another warning about non-existent include dirs
Ammend to 92456967d0
!1427
The .pc file of opencv4 seems to be broken
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1438>
This commit is contained in:
parent
e7160a97cf
commit
43736a7800
1 changed files with 5 additions and 1 deletions
|
@ -14,10 +14,14 @@ if not opencv_dep.found()
|
||||||
opencv_dep = dependency('opencv4', version : '>= 4.0.0', required : false)
|
opencv_dep = dependency('opencv4', version : '>= 4.0.0', required : false)
|
||||||
endif
|
endif
|
||||||
if opencv_dep.found()
|
if opencv_dep.found()
|
||||||
|
# opencv4 seems to ship with .pc file that references non-existent include dir
|
||||||
|
# (/usr/include/opencv4/opencv instead of /usr/include/opencv4/opencv2)
|
||||||
|
gstopencv_cargs = cxx.get_supported_arguments(['-Wno-missing-include-dirs'])
|
||||||
|
|
||||||
gstopencv = library('gstopencv-' + api_version,
|
gstopencv = library('gstopencv-' + api_version,
|
||||||
opencv_sources,
|
opencv_sources,
|
||||||
c_args : gst_plugins_bad_args + ['-DBUILDING_GST_OPENCV'],
|
c_args : gst_plugins_bad_args + ['-DBUILDING_GST_OPENCV'],
|
||||||
cpp_args : gst_plugins_bad_args + ['-DBUILDING_GST_OPENCV'],
|
cpp_args : gst_plugins_bad_args + gstopencv_cargs + ['-DBUILDING_GST_OPENCV'],
|
||||||
include_directories : [configinc, libsinc],
|
include_directories : [configinc, libsinc],
|
||||||
version : libversion,
|
version : libversion,
|
||||||
soversion : soversion,
|
soversion : soversion,
|
||||||
|
|
Loading…
Reference in a new issue