mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 06:22:29 +00:00
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.
40 lines
819 B
Meson
40 lines
819 B
Meson
fft_sources = [
|
|
'gstfft.c',
|
|
'gstffts16.c',
|
|
'gstffts32.c',
|
|
'gstfftf32.c',
|
|
'gstfftf64.c',
|
|
'kiss_fft_s16.c',
|
|
'kiss_fft_s32.c',
|
|
'kiss_fft_f32.c',
|
|
'kiss_fft_f64.c',
|
|
'kiss_fftr_s16.c',
|
|
'kiss_fftr_s32.c',
|
|
'kiss_fftr_f32.c',
|
|
'kiss_fftr_f64.c'
|
|
]
|
|
|
|
fft_headers = [
|
|
'fft.h',
|
|
'fft-prelude.h',
|
|
'gstfftf32.h',
|
|
'gstfftf64.h',
|
|
'gstfft.h',
|
|
'gstffts16.h',
|
|
'gstffts32.h',
|
|
]
|
|
install_headers(fft_headers, subdir : 'gstreamer-1.0/gst/fft/')
|
|
|
|
gstfft = library('gstfft-@0@'.format(api_version),
|
|
fft_sources,
|
|
c_args : gst_plugins_base_args,
|
|
include_directories: [configinc, libsinc],
|
|
version : libversion,
|
|
soversion : soversion,
|
|
install : true,
|
|
dependencies : [gst_dep, libm],
|
|
)
|
|
|
|
fft_dep = declare_dependency(link_with: gstfft,
|
|
include_directories : [libsinc],
|
|
dependencies : [gst_dep])
|