-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmeson_options.txt
41 lines (41 loc) · 973 Bytes
/
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
option('introspection',
type: 'boolean',
value: true,
description: 'Build GObject Introspection (GIR) files',
)
option('vapi',
type: 'boolean',
value: true,
description: 'Generate vapi data (requires vapigen and introspection option)',
)
option('gtk4',
type: 'boolean',
value: true,
description: 'Enable the GTK4 library and utilities',
)
option('gtk_doc',
type: 'boolean',
value: true,
description: 'Build the reference documentation (requires gi-docgen)',
)
option('gpg_path',
type: 'string',
value: '',
description: 'Path to gpg, autodetected if not set',
)
option('crypto',
type: 'combo',
choices: ['libgcrypt', 'gnutls'],
value: 'libgcrypt',
description: 'Backend library to implement transport encryption',
)
option('ssh_agent',
type: 'boolean',
value: true,
description: 'Build ssh-agent binary',
)
option('systemd',
type: 'feature',
value: 'auto',
description: 'Use systemd socket activation for server programs'
)