forked from p11-glue/p11-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
79 lines (60 loc) · 2.44 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
79
option('hash_impl', type : 'combo',
value : 'internal', choices : ['internal', 'freebl'],
description : 'Hash implementation to use')
option('module_config', type : 'string',
value : '',
description : 'Module configuration files shipped by packages')
option('system_config', type : 'string',
value : '',
description : 'Change PKCS#11 system config directory')
option('user_config', type : 'string',
value : '~/.config/pkcs11',
description : 'Change PKCS#11 user config directory')
option('module_path', type : 'string',
value : '',
description : 'Load modules with relative path names from here')
option('libffi', type : 'feature',
value : 'auto',
description : 'Use libffi for building closures')
option('closures', type : 'integer',
value : 64,
description : 'The number of precompiled closures, used when libffi is unavailable')
option('trust_module', type : 'feature',
value : 'auto',
description : 'Build the trust module')
option('trust_paths', type : 'string',
value : '',
description : 'Input paths for trust module')
option('strict', type : 'boolean',
value : false,
description : 'Strict code compilation')
option('systemd', type : 'feature',
value : 'auto',
description : 'Use systemd socket activation')
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('gtk_doc', type : 'boolean',
value : false,
description : 'Build documentation using gtk-doc')
option('glib_prefix', type : 'string',
value : '',
description : 'GLib installed prefix, used for gtk-doc, taken from pkg-config if undefined')
option('man', type : 'boolean',
value : false,
description : 'Build manpages using xsltproc')
option('nls', type : 'boolean',
value : true,
description : 'Enable NLS support')
option('test', type : 'boolean',
value : true,
description : 'Enable building test programs')
option('rpc_min', type : 'integer',
min : 0, max : 0, value : 0,
description : 'Minimum RPC protocol version we support')
option('rpc_max', type : 'integer',
min : 0, max : 0, value : 0,
description : 'Maximum RPC protocol version we support')