Rewrite the CMake build to use explicit dependencies between libraries,
[oota-llvm.git] / lib / Transforms / Instrumentation / CMakeLists.txt
1 add_llvm_library(LLVMInstrumentation
2   EdgeProfiling.cpp
3   GCOVProfiling.cpp
4   Instrumentation.cpp
5   OptimalEdgeProfiling.cpp
6   PathProfiling.cpp
7   ProfilingUtils.cpp
8   )
9
10 add_llvm_library_dependencies(LLVMInstrumentation
11   LLVMAnalysis
12   LLVMCore
13   LLVMSupport
14   LLVMTransformUtils
15   )