aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules/LLVM-Config.cmake
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-11-29 01:31:52 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-11-29 01:31:52 +0000
commit288bc5cdd0b31b923aa6acc314736f5303e67978 (patch)
tree05e3860176926538f6f1f339d4930e84f5ab26b1 /cmake/modules/LLVM-Config.cmake
parentba78c883d4c89bd807fa7ebea7ac6f22f3503223 (diff)
downloadexternal_llvm-288bc5cdd0b31b923aa6acc314736f5303e67978.zip
external_llvm-288bc5cdd0b31b923aa6acc314736f5303e67978.tar.gz
external_llvm-288bc5cdd0b31b923aa6acc314736f5303e67978.tar.bz2
build/cmake: Switch to using llvm-build computed dependencies.
- I verified locally that the current dependency lists are identical. - This makes add_llvm_library_dependencies() a no-op. I'll remove it once this change passes the bots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145355 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/modules/LLVM-Config.cmake')
-rwxr-xr-xcmake/modules/LLVM-Config.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/LLVM-Config.cmake b/cmake/modules/LLVM-Config.cmake
index b5f262a..574335c 100755
--- a/cmake/modules/LLVM-Config.cmake
+++ b/cmake/modules/LLVM-Config.cmake
@@ -152,7 +152,7 @@ function(explicit_map_components_to_libraries out_libs)
set(processed)
while( cursor LESS lst_size )
list(GET expanded_components ${cursor} lib)
- get_property(lib_deps GLOBAL PROPERTY LLVM_LIB_DEPS_${lib})
+ get_property(lib_deps GLOBAL PROPERTY LLVMBUILD_LIB_DEPS_${lib})
list(APPEND expanded_components ${lib_deps})
# Remove duplicates at the front:
list(REVERSE expanded_components)