forked from drobilla/jalv
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmeson_options.txt
35 lines (24 loc) · 1.22 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
# Copyright 2020-2023 David Robillard <[email protected]>
# SPDX-License-Identifier: 0BSD OR ISC
option('checks', type: 'feature', value: 'enabled', yield: true,
description: 'Check for platform-specific features')
option('cxx', type: 'feature', value: 'auto', yield: true,
description: 'Build C++ programs')
option('gtk3', type: 'feature', value: 'auto', yield: true,
description: 'Build Gtk3 GUI')
option('portaudio', type: 'feature', value: 'auto', yield: true,
description: 'Build PortAudio driver')
option('jack', type: 'feature', value: 'auto', yield: true,
description: 'Build JACK driver')
option('lint', type: 'boolean', value: false, yield: true,
description: 'Run code quality checks')
option('posix', type: 'feature', value: 'auto', yield: true,
description: 'Use POSIX system facilities')
option('qt5', type: 'feature', value: 'auto', yield: true,
description: 'Build Qt5 GUI')
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')