-
Notifications
You must be signed in to change notification settings - Fork 19
/
meson_options.txt
47 lines (32 loc) · 1.47 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
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright 2020-2024 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
option('checks', type: 'feature', value: 'enabled', yield: true,
description: 'Check for platform-specific features')
option('cxx', type: 'feature', yield: true,
description: 'Build C++ programs')
option('gtk3', type: 'feature', yield: true,
description: 'Build Gtk3 GUI')
option('portaudio', type: 'feature', yield: true,
description: 'Build PortAudio driver')
option('jack', type: 'feature', yield: true,
description: 'Build JACK driver')
option('lint', type: 'boolean', value: false, yield: true,
description: 'Run code quality checks')
option('man', type: 'feature', value: 'enabled', yield: true,
description: 'Install man pages')
option('posix', type: 'feature', yield: true,
description: 'Use POSIX system facilities')
option('qt5', type: 'feature', yield: true,
description: 'Build Qt5 GUI')
option('qt5_moc', type: 'string', yield: true,
description: 'Path to Qt5 moc executable')
option('qt6', type: 'feature', yield: true,
description: 'Build Qt6 GUI')
option('qt6_moc', type: 'string', yield: true,
description: 'Path to Qt6 moc executable')
option('suil', type: 'feature', yield: true,
description: 'Use suil to load plugin UIs')
option('title', type: 'string', value: 'Jalv',
description: 'Project title')
option('tests', type: 'feature', yield: true,
description: 'Build tests')