meson_options.txt (705B)
1 # fuzzing options 2 3 option('fuzzing_engine', 4 type : 'combo', 5 choices : ['none', 'libfuzzer', 'oss-fuzz'], 6 value : 'none', 7 description : 'Select the fuzzing engine') 8 9 option('fuzzer_ldflags', 10 type : 'string', 11 description : 'Extra LDFLAGS used during linking of fuzzing binaries') 12 13 option('build_tests', 14 type : 'boolean', 15 value : true, 16 description : 'Build unit tests') 17 18 option('botan_wasm_path', 19 type : 'string', 20 value : '', 21 description : 'Custom path for libbotan-3.a when targeting WASM') 22 23 option('botan_include_path', 24 type : 'string', 25 value : '', 26 description : 'Custom path for botan include files')