Rewrite the CMake build to use explicit dependencies between libraries,
[oota-llvm.git] / lib / Object / CMakeLists.txt
1 add_llvm_library(LLVMObject
2   Binary.cpp
3   COFFObjectFile.cpp
4   ELFObjectFile.cpp
5   Error.cpp
6   MachOObject.cpp
7   MachOObjectFile.cpp
8   Object.cpp
9   ObjectFile.cpp
10   )
11
12 add_llvm_library_dependencies(LLVMObject
13   LLVMCore
14   LLVMSupport
15   )