xref: /openbmc/phosphor-certificate-manager/meson.options (revision d719701d576ff7b0799f8e6fccbcfcf37e5fb383)
1option('tests', type: 'feature', description: 'Build tests')
2
3option(
4    'authority-limit',
5    type: 'integer',
6    value: 10,
7    description: 'Authority certificates limit',
8)
9
10option(
11    'ca-cert-extension',
12    type: 'feature',
13    description: 'Enable CA certificate manager (IBM specific)',
14)
15
16option(
17    'config-bmcweb',
18    type: 'feature',
19    description: 'Install bmcweb cert configs',
20)
21
22option(
23    'config-authority',
24    type: 'feature',
25    description: 'Install authority cert configs',
26)
27
28option(
29    'authorities-list-name',
30    type: 'string',
31    value: 'trust_bundle',
32    description: 'File name of the authorities list',
33)
34
35option(
36    'allow-expired',
37    type: 'feature',
38    value: 'enabled',
39    description: 'Allow expired certificates',
40)
41