1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 14:02:52 +02:00
llvm-mirror/lib/Fuzzer/test/trace-pc/CMakeLists.txt

15 lines
364 B
CMake

# These tests are not instrumented with coverage.
set(CMAKE_CXX_FLAGS_RELEASE
"${LIBFUZZER_FLAGS_BASE} -O0 -fno-sanitize-coverage=8bit-counters -fsanitize-coverage=trace-pc")
foreach(Test ${TracePCTests})
add_executable(LLVMFuzzer-${Test}-TracePC
../${Test}.cpp
)
target_link_libraries(LLVMFuzzer-${Test}-TracePC
LLVMFuzzer
)
endforeach()