-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathmeson_options.txt
55 lines (55 loc) · 1.37 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
48
49
50
51
52
53
54
55
option('docs',
type: 'boolean',
value: false,
description: 'Build the API references (requires gtk-doc)'
)
option('deprecated_warnings',
type : 'boolean',
value : false,
description: 'Show build warnings for deprecations'
)
option('py-overrides-dir',
type : 'array',
value : [],
description: 'Path to pygobject overrides directory'
)
option('python_target',
type: 'array',
value: ['python3'],
description: 'Python installation to target to lookup if py-overrides-dir not supplied'
)
option('status-notifier',
type: 'boolean',
value: true,
description: 'Build the XApp StatusNotifier service.'
)
option('app-lib-only',
type: 'boolean',
value: false,
description: 'Limit build to core library only and without the keyboard layout controller. This is to allow flatpak bundlings.'
)
option('debian_derivative',
type: 'boolean',
value: false,
description: 'Use paths specific to Debian and derivatives.'
)
option('mate',
type: 'boolean',
value: true,
description: 'Install mate specific items.'
)
option('xfce',
type: 'boolean',
value: true,
description: 'Install xfce specific items.'
)
option('introspection',
type: 'boolean',
value: true,
description: 'Enable GObject Introspection.'
)
option('vapi',
type: 'boolean',
value: true,
description: 'Enable Vala bindings.'
)