summaryrefslogtreecommitdiff
path: root/utils/KillTheDoctor
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2016-12-23 01:39:20 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2016-12-23 01:39:20 +0000
commit0b79f4e66196a2bbbd2def7d553d00d8fcc61d66 (patch)
treeac3caf50760de7d7d72adb5b8e0787b767959d1f /utils/KillTheDoctor
parent3abadf484ba34c3d8ea619f7b367a03a7afbe720 (diff)
KillTheDoctor: Add a required system lib, psapi. KillTheDoctor itself uses Win32 API directly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@290401 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/KillTheDoctor')
-rw-r--r--utils/KillTheDoctor/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/KillTheDoctor/CMakeLists.txt b/utils/KillTheDoctor/CMakeLists.txt
index 37c2b7ceb46..72d994fb995 100644
--- a/utils/KillTheDoctor/CMakeLists.txt
+++ b/utils/KillTheDoctor/CMakeLists.txt
@@ -2,4 +2,7 @@ add_llvm_utility(KillTheDoctor
KillTheDoctor.cpp
)
-target_link_libraries(KillTheDoctor LLVMSupport)
+target_link_libraries(KillTheDoctor
+ LLVMSupport
+ psapi
+ )