llvm-project/llvm/lib/Fuzzer/CMakeLists.txt

16 lines
334 B
CMake
Raw Normal View History

if( LLVM_USE_SANITIZE_COVERAGE )
add_library(LLVMFuzzer STATIC
EXCLUDE_FROM_ALL # Do not build if you are not building fuzzers.
FuzzerCrossOver.cpp
FuzzerIO.cpp
FuzzerLoop.cpp
FuzzerMain.cpp
FuzzerMutate.cpp
FuzzerUtil.cpp
)
if( LLVM_INCLUDE_TESTS )
add_subdirectory(test)
endif()
endif()