mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
cea5e3fcdb
Requires Meson 0.48, but the feature will be ignored on older versions so it's safe to add it without bumping the requirement. Documentation: https://github.com/mesonbuild/meson/blob/master/docs/markdown/Reference-manual.md#shared_library
14 lines
511 B
Meson
14 lines
511 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,
|
|
darwin_versions : osxversion,
|
|
install : true,
|
|
dependencies : [gstbase_dep, gsturidownloader_dep],
|
|
)
|
|
|
|
gstadaptivedemux_dep = declare_dependency(link_with : gstadaptivedemux,
|
|
include_directories : [libsinc],
|
|
dependencies : [gstbase_dep, gsturidownloader_dep])
|