mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
6b8f92d84f
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.
18 lines
634 B
Meson
18 lines
634 B
Meson
badaudio_sources = ['gstnonstreamaudiodecoder.c']
|
|
badaudio_headers = ['gstnonstreamaudiodecoder.h', 'audio-bad-prelude.h']
|
|
install_headers(badaudio_headers, subdir : 'gstreamer-1.0/gst/audio')
|
|
|
|
|
|
gstbadaudio = library('gstbadaudio-' + api_version,
|
|
badaudio_sources,
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
include_directories : [configinc, libsinc],
|
|
version : libversion,
|
|
soversion : soversion,
|
|
install : true,
|
|
dependencies : [gstaudio_dep, gstbase_dep],
|
|
)
|
|
|
|
gstbadaudio_dep = declare_dependency(link_with : gstbadaudio,
|
|
include_directories : [libsinc],
|
|
dependencies : [gstaudio_dep, gstbase_dep])
|