summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornicoguillier <59726521+nicoguillier@users.noreply.github.com>2020-01-10 09:57:38 +0100
committerJay Satiro <raysatiro@yahoo.com>2020-01-11 18:53:32 -0500
commit8792a592232a8578c6217a2f8a07bc5f33c3a82f (patch)
tree6ca46523215529147d9c058048703ec762b84f44
parent29e40a6d8a70630dd8eaa15beded205792342d08 (diff)
downloadcurl-8792a592232a8578c6217a2f8a07bc5f33c3a82f.tar.gz
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
-rw-r--r--CMake/FindLibSSH2.cmake2
1 files changed, 1 insertions, 1 deletions
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)