Adding dependencies to allow -DBUILD_SHARED_LIBS=true to complete.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142464 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Joe Abbey 2011-10-19 00:13:13 +00:00
parent aa13603a3e
commit fffc0fe42c
2 changed files with 9 additions and 0 deletions

View File

@ -17,4 +17,5 @@ add_llvm_library_dependencies(LLVMJIT
LLVMRuntimeDyld
LLVMSupport
LLVMTarget
LLVMCodeGen
)

View File

@ -40,3 +40,11 @@ add_llvm_library(gtest
add_llvm_library(gtest_main
UnitTestMain/TestMain.cpp
)
add_llvm_library_dependencies(gtest
LLVMSupport
)
add_llvm_library_dependencies(gtest_main
gtest
)