1 | option('version_suffix', type: 'string', value: '',
|
---|
2 | description: 'Suffix to append to SLIRP_VERSION_STRING')
|
---|
3 |
|
---|
4 | option('oss-fuzz', type : 'boolean', value : 'false',
|
---|
5 | description : 'build against oss-fuzz')
|
---|
6 |
|
---|
7 | option('llvm-fuzz', type : 'boolean', value : 'false',
|
---|
8 | description : 'build against LLVM libFuzzer')
|
---|
9 |
|
---|
10 | option('fuzz-reproduce', type : 'boolean', value : 'false',
|
---|
11 | description : 'build a standalone executable to reproduce fuzz cases')
|
---|
12 |
|
---|
13 | option('static', type : 'boolean', value : 'false',
|
---|
14 | description : 'build static binary, only for debugging, otherwise rather use --default-library static')
|
---|