diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2008-11-11 16:56:52 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2008-11-11 16:56:52 +0000 |
commit | 578f6cf6d0e56cd2ab0930b63ee0c3a4f96e8521 (patch) | |
tree | 246f90171f43005c2344db5ceddafa809d2e33a6 /cmake | |
parent | 3bd86aac994d5d68797c98b53b3ef892df1e99f6 (diff) | |
download | external_llvm-578f6cf6d0e56cd2ab0930b63ee0c3a4f96e8521.zip external_llvm-578f6cf6d0e56cd2ab0930b63ee0c3a4f96e8521.tar.gz external_llvm-578f6cf6d0e56cd2ab0930b63ee0c3a4f96e8521.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-x | cmake/modules/AddLLVM.cmake | 3 |
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 ) |