From 8792a592232a8578c6217a2f8a07bc5f33c3a82f Mon Sep 17 00:00:00 2001 From: nicoguillier <59726521+nicoguillier@users.noreply.github.com> Date: Fri, 10 Jan 2020 09:57:38 +0100 Subject: cmake: Improve libssh2 check on Windows - Add "libssh2" name to FindLibSSH2 library search. On Windows systems, libSSH2 CMake installation may name the library "LibSSH2". Prior to this change cmake only checked for name "ssh2". On Linux that works fine because it will prepend the "lib", but it doesn't do that on Windows. Closes https://github.com/curl/curl/pull/4804 --- CMake/FindLibSSH2.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMake/FindLibSSH2.cmake') diff --git a/CMake/FindLibSSH2.cmake b/CMake/FindLibSSH2.cmake index 84822dba7..0d6219425 100644 --- a/CMake/FindLibSSH2.cmake +++ b/CMake/FindLibSSH2.cmake @@ -12,7 +12,7 @@ endif() find_path(LIBSSH2_INCLUDE_DIR libssh2.h ) -find_library(LIBSSH2_LIBRARY NAMES ssh2 +find_library(LIBSSH2_LIBRARY NAMES ssh2 libssh2 ) if(LIBSSH2_INCLUDE_DIR) -- cgit v1.2.3