1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

KillTheDoctor: Add a required system lib, psapi. KillTheDoctor itself uses Win32 API directly.

llvm-svn: 290401
This commit is contained in:
NAKAMURA Takumi 2016-12-23 01:39:20 +00:00
parent c387751c70
commit eced142a49

View File

@ -2,4 +2,7 @@ add_llvm_utility(KillTheDoctor
KillTheDoctor.cpp
)
target_link_libraries(KillTheDoctor LLVMSupport)
target_link_libraries(KillTheDoctor
LLVMSupport
psapi
)