brintos

brintos / llvm-project-archived public Read only

0
0
Text · 450 B · d29c2f2 Raw
13 lines · plain
1if (LLVM_USE_SANITIZE_COVERAGE)2  add_executable(get_error_info_fuzzer3      get_error_info_fuzzer.cpp)4  set_target_properties(5      get_error_info_fuzzer PROPERTIES FOLDER "Fuzzers")6  target_compile_options(7      get_error_info_fuzzer PRIVATE -fsanitize=fuzzer)8  set_target_properties(9      get_error_info_fuzzer PROPERTIES LINK_FLAGS -fsanitize=fuzzer)10  target_include_directories(11      get_error_info_fuzzer PRIVATE .. ../include)12endif()13