gstreamer/gst-libs/gst/opencv/meson.build
Tim-Philipp Müller 456f60164c opencv: GST_EXPORT -> GST_OPENCV_API
We need different export decorators for the different libs.
For now no actual change though, just rename before the release,
and add prelude headers to define the new decorator to GST_EXPORT.
2018-03-13 12:57:56 +00:00

28 lines
775 B
Meson

opencv_sources = [
'gstopencvutils.cpp',
'gstopencvvideofilter.cpp',
]
opencv_headers = [
'opencv-prelude.h',
'gstopencvutils.h',
'gstopencvvideofilter.h',
]
install_headers(opencv_headers, subdir : 'gstreamer-1.0/gst/opencv')
opencv_dep = dependency('opencv', version : '>= 2.3.0', required : false)
if opencv_dep.found()
gstopencv = library('gstopencv-' + api_version,
opencv_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc, libsinc],
version : libversion,
soversion : soversion,
install : true,
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep],
)
gstopencv_dep = declare_dependency(link_with: gstopencv,
include_directories : [libsinc],
dependencies : [gstvideo_dep, opencv_dep])
endif