diff options
| author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-09-10 21:14:25 +0000 |
|---|---|---|
| committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-09-10 21:14:25 +0000 |
| commit | dc38d36ccb5b8274fb94701866ca5b39686ba125 (patch) | |
| tree | 4d23f24aaef2fb4b486b2882a5c5340a4c3c773c /llvm/lib/CodeGen | |
| parent | 0881f4a367de8fc0ac7e1db44eca833171e655e2 (diff) | |
| download | bcm5719-llvm-dc38d36ccb5b8274fb94701866ca5b39686ba125.tar.gz bcm5719-llvm-dc38d36ccb5b8274fb94701866ca5b39686ba125.zip | |
CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.
llvm-svn: 113632
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt | 9 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/CMakeLists.txt | 9 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt | 8 |
3 files changed, 23 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt b/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt index ca8b8436c11..ef6e157e86d 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt +++ b/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt @@ -8,4 +8,11 @@ add_llvm_library(LLVMAsmPrinter OcamlGCPrinter.cpp ) -target_link_libraries (LLVMAsmPrinter LLVMMCParser) +target_link_libraries (LLVMAsmPrinter + LLVMAnalysis + LLVMCodeGen + LLVMCore + LLVMMC + LLVMMCParser + LLVMTarget + ) diff --git a/llvm/lib/CodeGen/CMakeLists.txt b/llvm/lib/CodeGen/CMakeLists.txt index 2ef115dbd20..068ad2f1c6c 100644 --- a/llvm/lib/CodeGen/CMakeLists.txt +++ b/llvm/lib/CodeGen/CMakeLists.txt @@ -83,4 +83,11 @@ add_llvm_library(LLVMCodeGen VirtRegRewriter.cpp ) -target_link_libraries (LLVMCodeGen LLVMCore LLVMScalarOpts) +target_link_libraries (LLVMCodeGen + LLVMAnalysis + LLVMCore + LLVMMC + LLVMScalarOpts + LLVMTarget + LLVMTransformUtils + ) diff --git a/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt b/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt index 799988a4c86..ce3259a7f3e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt +++ b/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt @@ -22,4 +22,10 @@ add_llvm_library(LLVMSelectionDAG TargetSelectionDAGInfo.cpp ) -target_link_libraries (LLVMSelectionDAG LLVMAnalysis LLVMAsmPrinter LLVMCodeGen) +target_link_libraries(LLVMSelectionDAG + LLVMAnalysis + LLVMCodeGen + LLVMCore + LLVMMC + LLVMTarget + ) |

