-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmeson_options.txt
63 lines (53 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
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
option('manpage',
type: 'boolean',
value: true,
description: 'Build man pages',
)
option('crypto',
type: 'combo',
choices: ['libgcrypt',
'gnutls',
'disabled'],
value: 'libgcrypt',
description: 'Backend library to implement transport encryption',
)
option('debugging',
type: 'boolean',
value: false,
description: 'Turn debugging on/off',
)
option('vapi',
type: 'boolean',
value: true,
description: 'Create VAPI file.',
)
option('gtk_doc',
type: 'boolean',
value: true,
description: 'Build reference documentation using gi-docgen',
)
option('introspection',
type: 'boolean',
value: true,
description: 'Create GIR file.',
)
option('bashcompdir',
type: 'string',
value: '',
description: 'Override default location for bash completion files',
)
option('bash_completion',
type: 'feature',
value: 'auto',
description: 'Install bash completion files',
)
option('tpm2',
type: 'boolean',
value: false,
description: 'With TPM2 Software Stack',
)
option('pam',
type: 'boolean',
value: false,
description: 'Build PAM module',
)