You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libcxxabi/fuzz/CMakeLists.txt

12 lines
248 B
CMake

# See http://llvm.org/docs/LibFuzzer.html
if( LLVM_USE_SANITIZE_COVERAGE )
add_executable(cxa_demangle_fuzzer
cxa_demangle_fuzzer.cpp
../src/cxa_demangle.cpp
)
target_link_libraries(cxa_demangle_fuzzer
LLVMFuzzer
)
endif()