mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
46a6d3f899
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.
24 lines
663 B
Meson
24 lines
663 B
Meson
badvideo_sources = [
|
|
'gstvideoaggregator.c',
|
|
]
|
|
badvideo_headers = [
|
|
'gstvideoaggregatorpad.h',
|
|
'gstvideoaggregator.h',
|
|
'video-bad-prelude.h',
|
|
]
|
|
install_headers(badvideo_headers, subdir : 'gstreamer-1.0/gst/video')
|
|
|
|
|
|
gstbadvideo = library('gstbadvideo-' + api_version,
|
|
badvideo_sources,
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
include_directories : [configinc, libsinc],
|
|
version : libversion,
|
|
soversion : soversion,
|
|
install : true,
|
|
dependencies : [gstvideo_dep, gstbase_dep],
|
|
)
|
|
|
|
gstbadvideo_dep = declare_dependency(link_with : gstbadvideo,
|
|
include_directories : [libsinc],
|
|
dependencies : [gstvideo_dep, gstbase_dep])
|