summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2008-10-26 00:51:05 +0000
committerOscar Fuentes <ofv@wanadoo.es>2008-10-26 00:51:05 +0000
commitbcc1db5f0a0444b277967d7b78411f0d14f7ccf4 (patch)
treef7529adf639a19babfead5fce4cd77759a7d2e44 /cmake
parent619ce78b213121c6841d78cfeb55d0d07764622a (diff)
downloadllvm-bcc1db5f0a0444b277967d7b78411f0d14f7ccf4.tar.gz
llvm-bcc1db5f0a0444b277967d7b78411f0d14f7ccf4.tar.bz2
llvm-bcc1db5f0a0444b277967d7b78411f0d14f7ccf4.tar.xz
CMake: Support for LLVM_USED_LIBS variable, which is the cmake
counterpart of USED_LIBS. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58178 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rwxr-xr-xcmake/modules/AddLLVM.cmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index 0b7d9c821a..a46dcce910 100755
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -15,6 +15,11 @@ endmacro(add_llvm_library name)
macro(add_llvm_executable name)
add_executable(${name} ${ARGN})
+ if( LLVM_USED_LIBS )
+ foreach(lib ${LLVM_USED_LIBS})
+ target_link_libraries( ${name} ${lib} )
+ endforeach(lib)
+ endif( LLVM_USED_LIBS )
if( LLVM_LINK_COMPONENTS )
llvm_config(${name} ${LLVM_LINK_COMPONENTS})
endif( LLVM_LINK_COMPONENTS )