Files
librubberband/meson_options.txt

34 lines
1.2 KiB
Meson
Raw Normal View History

2021-02-05 16:42:13 +00:00
option('fft',
type: 'combo',
choices: ['auto', 'builtin', 'kissfft', 'fftw', 'vdsp', 'ipp'],
2021-02-05 16:42:13 +00:00
value: 'auto',
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',
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.')
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.')
option('no_shared',
type: 'boolean',
value: 'false',
description: 'Do not build shared libraries. On Windows this will also ensure that the static library is called simply rubberband.lib, not rubberband-static.lib as it is in the default build.')