-
Notifications
You must be signed in to change notification settings - Fork 7
/
meson_options.txt
29 lines (20 loc) · 1005 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
# Copyright 2020-2023 David Robillard <[email protected]>
# SPDX-License-Identifier: 0BSD OR GPL-3.0-or-later
option('bindings_py', type: 'feature', yield: true,
description: 'Build Python bindings')
option('checks', type: 'boolean', value: true, yield: true,
description: 'Check for features with the build system')
option('docs', type: 'feature', yield: true,
description: 'Build documentation')
option('gui', type: 'feature', yield: true,
description: 'Build GUI')
option('jack', type: 'feature', yield: true,
description: 'Build JACK audio and MIDI support')
option('lint', type: 'boolean', value: false, yield: true,
description: 'Run code quality checks')
option('lv2dir', type: 'string', value: '', yield: true,
description: 'LV2 bundle installation directory')
option('portaudio', type: 'feature', yield: true,
description: 'Build PortAudio driver')
option('title', type: 'string', value: 'Ingen',
description: 'Project title')