First cut at a Meson build

This commit is contained in:
Chris Cannam
2021-02-05 16:42:13 +00:00
parent 1e64c2b317
commit 286e739933
3 changed files with 435 additions and 0 deletions

18
meson_options.txt Normal file
View File

@@ -0,0 +1,18 @@
option('fft',
type: 'combo',
choices: ['auto', 'kissfft', 'fftw', 'vdsp', 'ipp'],
value: 'auto',
description: 'FFT library to use. The default (auto) will use vDSP if available, KissFFT otherwise.')
option('resampler',
type: 'combo',
choices: ['auto', 'libsamplerate', 'speex', 'ipp'],
value: 'auto',
description: 'Resampler library to use. Recommended is libsamplerate. The default (auto) will use libsamplerate if available, speex otherwise.')
option('ipp_path',
type: 'string',
value: '',
description: 'Path to Intel IPP libraries, if selected for any of the other options.')