mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
22f0f11abf
The GST_EXPORT should handle it.
17 lines
543 B
Meson
17 lines
543 B
Meson
badbase_sources = ['gstaggregator.c']
|
|
badbase_headers = ['gstaggregator.h']
|
|
install_headers(badbase_headers, subdir : 'gstreamer-1.0/gst/base')
|
|
|
|
gstbadbase = library('gstbadbase-' + api_version,
|
|
badbase_sources,
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
include_directories : [configinc, libsinc],
|
|
version : libversion,
|
|
soversion : soversion,
|
|
install : true,
|
|
dependencies : [gst_dep],
|
|
)
|
|
|
|
gstbadbase_dep = declare_dependency(link_with : gstbadbase,
|
|
include_directories : [libsinc],
|
|
dependencies : [gst_dep])
|