mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
22f0f11abf
The GST_EXPORT should handle it.
13 lines
479 B
Meson
13 lines
479 B
Meson
gstadaptivedemux = library('gstadaptivedemux-' + api_version,
|
|
'gstadaptivedemux.c',
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
include_directories : [configinc, libsinc],
|
|
version : libversion,
|
|
soversion : soversion,
|
|
install : true,
|
|
dependencies : [gstbase_dep, gsturidownloader_dep],
|
|
)
|
|
|
|
gstadaptivedemux_dep = declare_dependency(link_with : gstadaptivedemux,
|
|
include_directories : [libsinc],
|
|
dependencies : [gstbase_dep, gsturidownloader_dep])
|