aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2008-11-11 16:56:52 +0000
committerOscar Fuentes <ofv@wanadoo.es>2008-11-11 16:56:52 +0000
commitd9aea93d11853bda776ebc9f4c78b7b4fabb6461 (patch)
tree246f90171f43005c2344db5ceddafa809d2e33a6 /cmake
parentb0959d547764f8cfb7e324bea9f5b06a9fe4bac4 (diff)
downloadexternal_llvm-d9aea93d11853bda776ebc9f4c78b7b4fabb6461.zip
external_llvm-d9aea93d11853bda776ebc9f4c78b7b4fabb6461.tar.gz
external_llvm-d9aea93d11853bda776ebc9f4c78b7b4fabb6461.tar.bz2
CMake: Removed unnecessary library path setting that was breaking the
build on OS X. Fix by Jjgod Jiang! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59048 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rwxr-xr-xcmake/modules/AddLLVM.cmake3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index a46dcce..3ca2d12 100755
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -27,9 +27,6 @@ macro(add_llvm_executable name)
target_link_libraries(${name} ${llvm_libs})
else( MSVC )
add_dependencies(${name} llvm-config.target)
- set_target_properties(${name}
- PROPERTIES
- LINK_FLAGS "-L ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}")
if( MINGW )
target_link_libraries(${name} DbgHelp psapi)
elseif( CMAKE_HOST_UNIX )