-
Notifications
You must be signed in to change notification settings - Fork 28
/
meson_options.txt
70 lines (61 loc) · 1.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
option('warn-deprecated',
type : 'boolean',
value : false,
description : 'Enable deprecated declaration warnings in debug mode'
)
option(
'run-in-place',
type: 'boolean',
value: false,
description: 'Load ui data from the source tree',
)
option(
'nautilus-actions',
type: 'feature',
value: 'auto',
description: 'Build the nautilus context menu actions',
)
option(
'notification',
type: 'feature',
value: 'auto',
description: 'Enable operation completion notification',
)
option(
'use_native_appchooser',
type: 'boolean',
value: false,
description: '''Whether to use desktop environment’s native app chooser via
XDG portal. Offers better desktop integration but only works when opening a
single file.''',
)
option(
'packagekit',
type: 'boolean',
value: true,
description: 'Build PackageKit installer for missing utilities',
)
option(
'libarchive',
type: 'feature',
value: 'auto',
description: 'Enable code that requires libarchive',
)
option(
'cpio',
type: 'string',
value: 'auto',
description: 'Path to the cpio program',
)
option(
'introspection',
type: 'feature',
value: 'disabled',
description: 'Generate introspection data for the executable (e.g. for static analysis and API docs)',
)
option(
'api_docs',
type: 'feature',
value: 'disabled',
description: 'Use gi-docgen to build API documentation (only useful for people developing File Roller)',
)