Protection against stack-based memory corruption errors using SafeStack
[oota-llvm.git] / lib / Transforms / Instrumentation / CMakeLists.txt
1 add_llvm_library(LLVMInstrumentation
2   AddressSanitizer.cpp
3   BoundsChecking.cpp
4   DataFlowSanitizer.cpp
5   GCOVProfiling.cpp
6   MemorySanitizer.cpp
7   Instrumentation.cpp
8   InstrProfiling.cpp
9   SafeStack.cpp
10   SanitizerCoverage.cpp
11   ThreadSanitizer.cpp
12
13   ADDITIONAL_HEADER_DIRS
14   ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms
15   )
16
17 add_dependencies(LLVMInstrumentation intrinsics_gen)