From a1a261ac11b8707b943892d7c2d65db6082d8178 Mon Sep 17 00:00:00 2001 From: Julien Schueller <schueller@phimeca.com> Date: Fri, 28 Feb 2020 12:52:30 -0500 Subject: [PATCH] CMake: Fix psapi lib name on case-sensitive fs Fix another place missed by commit c3acc96dc (CMake: Fix psapi lib name on case-sensitive fs, 2020-02-13). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aa788e9..3aaa687 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -908,7 +908,7 @@ IF(KWSYS_C_SRCS OR KWSYS_CXX_SRCS) ENDIF() IF(KWSYS_SYS_HAS_PSAPI) TARGET_LINK_LIBRARIES(${KWSYS_TARGET_INTERFACE} ${KWSYS_LINK_DEPENDENCY} - Psapi) + psapi) ENDIF() ELSEIF(UNIX) IF (EXECINFO_LIB AND KWSYS_CXX_HAS_BACKTRACE) -- GitLab