-
Notifications
You must be signed in to change notification settings - Fork 95
/
meson_options.txt
34 lines (28 loc) · 1.25 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
option('fft',
type: 'combo',
choices: ['auto', 'builtin', 'kissfft', 'fftw', 'sleef', 'vdsp', 'ipp'],
value: 'auto',
description: 'FFT library to use. The default (auto) will use vDSP if available, the builtin implementation otherwise.')
option('resampler',
type: 'combo',
choices: ['auto', 'builtin', 'libsamplerate', 'speex', 'libspeexdsp', 'ipp'],
value: 'auto',
description: 'Resampler library to use. The default (auto) simply uses the builtin implementation.')
option('ipp_path',
type: 'string',
value: '',
description: 'Path to Intel IPP libraries, if selected for any of the other options.')
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('jni', type: 'feature', value: 'auto')
option('ladspa', type: 'feature', value: 'auto')
option('lv2', type: 'feature', value: 'auto')
option('vamp', type: 'feature', value: 'auto')
option('cmdline', type: 'feature', value: 'auto')
option('tests', type: 'feature', value: 'auto')