mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
6461ad057c
The g-i stuff for this helper lib was never usable from bindings anyway and there are problems with the latest gobject-introspection, so we might just as well remove the g-i integration entirely for this lib.
40 lines
856 B
Meson
40 lines
856 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],
|
|
vs_module_defs: vs_module_defs_dir + 'libgstfft.def',
|
|
)
|
|
|
|
fft_dep = declare_dependency(link_with: gstfft,
|
|
include_directories : [libsinc],
|
|
dependencies : [gst_dep])
|