Rewrite the CMake build to use explicit dependencies between libraries,
[oota-llvm.git] / lib / AsmParser / CMakeLists.txt
1 # AsmParser
2 add_llvm_library(LLVMAsmParser
3   LLLexer.cpp
4   LLParser.cpp
5   Parser.cpp
6   )
7
8 add_llvm_library_dependencies(LLVMAsmParser
9   LLVMCore
10   LLVMSupport
11   )