mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
43985b363d
GST_EXPORT should handle it.
39 lines
800 B
Meson
39 lines
800 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',
|
|
'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])
|