From eced142a49776bd5f3329781ec7e392b7e656162 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 23 Dec 2016 01:39:20 +0000 Subject: [PATCH] KillTheDoctor: Add a required system lib, psapi. KillTheDoctor itself uses Win32 API directly. llvm-svn: 290401 --- utils/KillTheDoctor/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 + )