Make the test actually test what it's supposed to test. Add a test for the from memor...
[oota-llvm.git] / lib / Fuzzer / CMakeLists.txt
1 add_library(LLVMFuzzer STATIC
2   EXCLUDE_FROM_ALL  # Do not build if you are not building fuzzers.
3   FuzzerCrossOver.cpp
4   FuzzerIO.cpp
5   FuzzerLoop.cpp
6   FuzzerMain.cpp
7   FuzzerMutate.cpp
8   FuzzerUtil.cpp
9   )
10
11 if( LLVM_INCLUDE_TESTS )
12   add_subdirectory(test)
13 endif()