-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathmeson_options.txt
78 lines (73 loc) · 1.32 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
71
72
73
74
75
76
77
78
#
# General build options
#
option(
'profile',
type: 'combo',
choices: [
'auto',
'development',
'beta',
'release'
],
description: 'Specifies the application type to be built'
)
option(
'revno',
type: 'string',
description: 'Custom revision string (default extracted from "git describe")'
)
option(
'iso_639_xml',
type: 'string',
value: '',
description: 'Full path to the ISO 639 XML file.'
)
option(
'iso_3166_xml',
type: 'string',
value: '',
description: 'Full path to the ISO 3166 XML file.'
)
option(
'valadoc',
type: 'feature',
value: 'auto',
description: 'Build API documentation'
)
#
# Development options
#
option(
'ref_tracking',
type: 'feature',
value: 'disabled',
description: 'Enable Geary.BaseObject reference tracking'
)
#
# Optional features
#
option(
'contractor',
type: 'feature',
value: 'disabled',
description: 'Install an Elementary OS a contractor file'
)
option(
'libunwind',
type: 'feature',
value: 'enabled',
description: 'Use libunwind for back traces in problem reports.'
)
option(
'tnef',
type: 'feature',
value: 'enabled',
description: 'Support Microsoft-proprietary TNEF attachments.'
)
option(
'delayed_replay_queue',
type: 'boolean',
value: false,
description: 'Add delay in session opening (for debug purpose only)'
)