2021-02-05 16:42:13 +00:00
|
|
|
|
|
|
|
|
option('fft',
|
|
|
|
|
type: 'combo',
|
2022-08-09 15:50:02 +01:00
|
|
|
choices: ['auto', 'builtin', 'kissfft', 'fftw', 'sleef', 'vdsp', 'ipp'],
|
2021-02-05 16:42:13 +00:00
|
|
|
value: 'auto',
|
2021-04-08 14:23:27 +01:00
|
|
|
description: 'FFT library to use. The default (auto) will use vDSP if available, the builtin implementation otherwise.')
|
2021-02-05 16:42:13 +00:00
|
|
|
|
|
|
|
|
option('resampler',
|
|
|
|
|
type: 'combo',
|
2022-09-02 11:10:44 +01:00
|
|
|
choices: ['auto', 'builtin', 'libsamplerate', 'speex', 'libspeexdsp', 'ipp'],
|
2021-02-05 16:42:13 +00:00
|
|
|
value: 'auto',
|
2022-01-12 10:10:34 +00:00
|
|
|
description: 'Resampler library to use. The default (auto) simply uses the builtin implementation.')
|
2021-02-05 16:42:13 +00:00
|
|
|
|
|
|
|
|
option('ipp_path',
|
|
|
|
|
type: 'string',
|
|
|
|
|
value: '',
|
|
|
|
|
description: 'Path to Intel IPP libraries, if selected for any of the other options.')
|
|
|
|
|
|
2021-02-09 11:12:20 +00:00
|
|
|
option('extra_include_dirs',
|
|
|
|
|
type: 'array',
|
|
|
|
|
value: [],
|
|
|
|
|
description: 'Additional local header directories to search for dependencies.')
|
|
|
|
|
|
|
|
|
|
option('extra_lib_dirs',
|
|
|
|
|
type: 'array',
|
|
|
|
|
value: [],
|
|
|
|
|
description: 'Additional local library directories to search for dependencies.')
|
|
|
|
|
|