mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-15 09:33:39 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227464 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
334 B
CMake
16 lines
334 B
CMake
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()
|