xref: /openbmc/libmctp/meson.options (revision 6586fc10ffe1ed3239fbd8e1251e25ba080f29ec)
1*6586fc10SMatt Johnstonoption(
2*6586fc10SMatt Johnston    'tests',
3*6586fc10SMatt Johnston    type: 'feature',
4*6586fc10SMatt Johnston    value: 'enabled',
5*6586fc10SMatt Johnston    description: 'Build tests'
6*6586fc10SMatt Johnston)
7*6586fc10SMatt Johnstonoption(
8*6586fc10SMatt Johnston    'bindings',
9*6586fc10SMatt Johnston    type: 'array',
10*6586fc10SMatt Johnston    description: 'Bindings to include',
11*6586fc10SMatt Johnston    choices: ['serial', 'astlpc'],
12*6586fc10SMatt Johnston    value: ['serial', 'astlpc'],
13*6586fc10SMatt Johnston)
14*6586fc10SMatt Johnstonoption(
15*6586fc10SMatt Johnston    'default_alloc',
16*6586fc10SMatt Johnston    type: 'feature',
17*6586fc10SMatt Johnston    description: 'Use libc malloc and free for heap memory',
18*6586fc10SMatt Johnston)
19*6586fc10SMatt Johnstonoption(
20*6586fc10SMatt Johnston    'stdio',
21*6586fc10SMatt Johnston    type: 'feature',
22*6586fc10SMatt Johnston    description: 'Support logging to stdio',
23*6586fc10SMatt Johnston)
24*6586fc10SMatt Johnstonoption(
25*6586fc10SMatt Johnston    'fileio',
26*6586fc10SMatt Johnston    type: 'feature',
27*6586fc10SMatt Johnston    description: 'Support interfaces based on file-descriptors',
28*6586fc10SMatt Johnston)
29*6586fc10SMatt Johnstonoption(
30*6586fc10SMatt Johnston    'syslog',
31*6586fc10SMatt Johnston    type: 'feature',
32*6586fc10SMatt Johnston    description: 'Support logging to syslog',
33*6586fc10SMatt Johnston)
34