-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
35 lines (24 loc) · 1.24 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
35
option('checks', type: 'boolean', value: true, yield: true,
description: 'Check for features with the build system')
option('cxx', type: 'feature', value: 'auto', yield: true,
description: 'Build C++ programs')
option('gtk2', type: 'feature', value: 'disabled', yield: true,
description: 'Build Gtk2 GUI')
option('gtk3', type: 'feature', value: 'auto', yield: true,
description: 'Build Gtk3 GUI')
option('portaudio', type: 'feature', value: 'disabled', yield: true,
description: 'Build PortAudio driver')
option('jack', type: 'feature', value: 'auto', yield: true,
description: 'Build JACK driver')
option('posix', type: 'feature', value: 'auto', yield: true,
description: 'Use POSIX system facilities')
option('qt5', type: 'feature', value: 'disabled', yield: true,
description: 'Build Qt5 GUI')
option('strict', type: 'boolean', value: false, yield: true,
description: 'Enable ultra-strict warnings')
option('suil', type: 'feature', value: 'auto', yield: true,
description: 'Use suil to load plugin UIs')
option('title', type: 'string', value: 'Jalv',
description: 'Project title')
option('tests', type: 'feature', value: 'auto', yield: true,
description: 'Build tests')