-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeson_options.txt
47 lines (40 loc) · 925 Bytes
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
option('optimizations',
type: 'boolean',
value: true,
description: 'Enable various math-related optimizations',
)
option('lto-optimizations',
type: 'boolean',
value: true,
description: 'Enable LTO optimizations',
)
option('sse-optimizations',
type: 'boolean',
value: true,
description: 'Enable SSE optimizations',
)
option('linux-embed',
type: 'boolean',
value: false,
description: 'DSP-only plugin builds, without editor/GUI',
)
option('build-lv2',
type: 'boolean',
value: true,
description: 'Build LV2 plugin variants',
)
option('build-vst2',
type: 'boolean',
value: true,
description: 'Build VST2 plugin variants',
)
option('build-vst3',
type: 'boolean',
value: true,
description: 'Build VST3 plugin variants',
)
option('build-universal',
type: 'boolean',
value: false,
description: 'Build macOS universal binaries',
)