-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathmeson_options.txt
16 lines (16 loc) · 1.03 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
option('build_tests', type : 'boolean', value : false,
description : 'Build test suite (default: "false").')
option('build_benchmarks', type : 'boolean', value : false,
description : 'Build benchmarking suite (default: "false").')
option('build_ippbench', type : 'boolean', value : false,
description : 'Add IPP sort to benchmarks (default: "false").')
option('build_vqsortbench', type : 'boolean', value : true,
description : 'Add google vqsort to benchmarks (default: "true").')
option('use_openmp', type : 'boolean', value : false,
description : 'Use OpenMP to accelerate key-value sort (default: "false").')
option('lib_type', type : 'string', value : 'shared',
description : 'Library type: shared or static (default: "shared").')
option('fatal_sanitizers', type : 'boolean', value : 'false',
description : 'If sanitizers are enabled, should all issues be considered fatal? (default: "false").')
option('asan_ci_dont_validate', type : 'boolean', value : 'false',
description : 'Only for speeding up ASAN CI, do not turn on otherwise')