-
Notifications
You must be signed in to change notification settings - Fork 5
/
meson_options.txt
38 lines (26 loc) · 1.18 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
# Copyright 2021-2023 David Robillard <[email protected]>
# SPDX-License-Identifier: 0BSD OR ISC
option('cocoa', type: 'feature', yield: true,
description : 'Build Cocoa wrappers')
option('docs', type: 'feature', yield: true,
description: 'Build documentation')
option('gtk2', type: 'feature', yield: true,
description : 'Build Gtk2 wrappers')
option('gtk3', type: 'feature', yield: true,
description : 'Build Gtk3 wrappers')
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('qt5', type: 'feature', yield: true,
description : 'Build Qt5 wrappers')
option('qt6', type: 'feature', yield: true,
description : 'Build Qt6 wrappers')
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: 'Suil',
description: 'Project title')
option('x11', type: 'feature', yield: true,
description : 'Build X11 wrappers')