summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: da9b700bf2cc4e5e7500925fb2ef7cc96e067fa8 (plain)
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')