forked from linux-nvme/nvme-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson_options.txt
More file actions
132 lines (132 loc) · 2.36 KB
/
meson_options.txt
File metadata and controls
132 lines (132 loc) · 2.36 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# SPDX-License-Identifier: GPL-2.0-or-later
option(
'nvme',
type: 'feature',
value: 'enabled',
description: 'Build nvme executable'
)
option(
'libnvme',
type: 'feature',
value: 'enabled',
description: 'Build libnvme library'
)
option(
'python',
type : 'feature',
value: 'auto',
description : 'Generate libnvme python bindings'
)
option(
'docs',
type : 'combo',
choices : ['false', 'html', 'man', 'rst', 'all'],
description : 'install documentation'
)
option(
'docs-build',
type : 'boolean',
value : false,
description : 'build documentation'
)
option(
'dracutrulesdir',
type : 'string',
value : 'lib/dracut/dracut.conf.d/',
description : 'directory for dracut rules files'
)
option(
'htmldir',
type : 'string',
value : '',
description : 'directory for HTML documentation'
)
option(
'rstdir',
type : 'string',
value : '',
description : 'directory for ReST documentation'
)
option(
'json-c',
type: 'feature',
value: 'auto',
description: 'JSON suppport'
)
option(
'nvme-tests',
type : 'boolean',
value : false,
description: 'Run tests against real hardware'
)
option(
'tests',
type : 'boolean',
value : true,
description : 'build tests'
)
option(
'pdc-enabled',
type: 'boolean',
value : false,
description : 'set default Persistent Discovery Controllers behavior'
)
option(
'rundir',
type: 'string',
value: 'run',
description: 'directory for volatile configuration files',
)
option(
'systemctl',
type : 'string',
value : '/usr/bin/systemctl',
description : 'path to systemctl binary'
)
option(
'systemddir',
type : 'string',
value : 'lib/systemd/system',
description : 'directory for systemd files'
)
option(
'udevrulesdir',
type : 'string',
value : 'lib/udev/rules.d',
description : 'directory for udev rules files'
)
option(
'version-tag',
type : 'string',
description : 'override the git version string'
)
option(
'examples',
type : 'boolean',
value : true,
description : 'build examples'
)
option(
'openssl',
type : 'feature',
value: 'auto',
description : 'OpenSSL support'
)
option(
'libdbus',
type : 'feature',
value: 'disabled',
description : 'libdbus support'
)
option(
'keyutils',
type: 'feature',
value: 'auto',
description: 'keyutils support'
)
option(
'liburing',
type : 'feature',
value: 'disabled',
description : 'liburing support'
)