-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmeson_options.txt
32 lines (22 loc) · 1.07 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
# Copyright 2021-2022 David Robillard <[email protected]>
# SPDX-License-Identifier: 0BSD OR ISC
option('bindings_py', type: 'feature', yield: true,
description: 'Build Python bindings')
option('bindings_cpp', type: 'feature', yield: true,
description: 'Build C++ bindings')
option('default_lv2_path', type: 'string', value: '', yield: true,
description: 'Default LV2_PATH to use if it is unset')
option('docs', type: 'feature', yield: true,
description: 'Build documentation')
option('html', type: 'feature', yield: true,
description: 'Build paginated HTML documentation')
option('lint', type: 'boolean', value: false, yield: true,
description: 'Run code quality checks')
option('singlehtml', type: 'feature', yield: true,
description: 'Build single-page HTML documentation')
option('tests', type: 'feature', yield: true,
description: 'Build tests')
option('title', type: 'string', value: 'Lilv',
description: 'Project title')
option('tools', type: 'feature', yield: true,
description: 'Build command line utilities')