summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-02-10 10:52:19 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-02-10 10:52:19 +0000
commitfdc6308fa19f4e4fd90b2221eef268945f166e7d (patch)
tree37b5306c2d253e102ef00f0939523b19531f9d26 /utils
parent282713c09b592e0d49d3c34e6b3bf62462a17933 (diff)
downloadllvm-fdc6308fa19f4e4fd90b2221eef268945f166e7d.tar.gz
llvm-fdc6308fa19f4e4fd90b2221eef268945f166e7d.tar.bz2
llvm-fdc6308fa19f4e4fd90b2221eef268945f166e7d.tar.xz
[CMake] LLVMSupport should be responsible to provide system_libs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201077 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/FileCheck/CMakeLists.txt6
-rw-r--r--utils/FileUpdate/CMakeLists.txt6
-rw-r--r--utils/not/CMakeLists.txt6
3 files changed, 0 insertions, 18 deletions
diff --git a/utils/FileCheck/CMakeLists.txt b/utils/FileCheck/CMakeLists.txt
index d691ceb429..999320f78a 100644
--- a/utils/FileCheck/CMakeLists.txt
+++ b/utils/FileCheck/CMakeLists.txt
@@ -3,9 +3,3 @@ add_llvm_utility(FileCheck
)
target_link_libraries(FileCheck LLVMSupport)
-if( MINGW )
- target_link_libraries(FileCheck imagehlp psapi shell32)
-endif( MINGW )
-if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
- target_link_libraries(FileCheck pthread)
-endif()
diff --git a/utils/FileUpdate/CMakeLists.txt b/utils/FileUpdate/CMakeLists.txt
index 0114e50c62..ce7478f77a 100644
--- a/utils/FileUpdate/CMakeLists.txt
+++ b/utils/FileUpdate/CMakeLists.txt
@@ -3,9 +3,3 @@ add_llvm_utility(FileUpdate
)
target_link_libraries(FileUpdate LLVMSupport)
-if( MINGW )
- target_link_libraries(FileUpdate imagehlp psapi shell32)
-endif( MINGW )
-if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
- target_link_libraries(FileUpdate pthread)
-endif()
diff --git a/utils/not/CMakeLists.txt b/utils/not/CMakeLists.txt
index 5ff14d6692..4a92348ba0 100644
--- a/utils/not/CMakeLists.txt
+++ b/utils/not/CMakeLists.txt
@@ -3,9 +3,3 @@ add_llvm_utility(not
)
target_link_libraries(not LLVMSupport)
-if( MINGW )
- target_link_libraries(not imagehlp psapi shell32)
-endif( MINGW )
-if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
- target_link_libraries(not pthread)
-endif()