forked from haidragon/spice-usbredir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
38 lines (31 loc) · 1.02 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
option('git_werror',
type: 'feature',
value: 'auto',
description: 'use -Werror if building from GIT')
option('fuzzing',
type : 'feature',
value : 'disabled',
description : 'Enable libFuzzer integration')
option('fuzzing-engine',
type : 'string',
value : 'standalone',
description : 'Location of prebuilt fuzzing engine library or "standalone" for built-in driver')
option('fuzzing-install-dir',
type : 'string',
description : 'Installation directory for fuzzing binaries')
option('stack_protector',
type : 'feature',
value : 'enabled',
description : 'Build usbredir\'s with stack-protector')
option('tools',
type : 'feature',
value : 'enabled',
description : 'Build usbredir\'s tools such as usbredirect')
option('tests',
type : 'feature',
value : 'enabled',
description : 'Build usbredir\'s tests such as filter')
option('extra-checks',
type : 'boolean',
value : false,
description : 'Enable extra checks on code. Do not use for production')