diff options
author | Laurent Stacul <laurent.stacul@amadeus.com> | 2021-09-14 09:53:24 +0000 |
---|---|---|
committer | Laurent Stacul <laurent.stacul@amadeus.com> | 2021-09-14 09:53:24 +0000 |
commit | 0a3a220fa9eba8cf9f8e250509958c2131b0a3c6 (patch) | |
tree | c97664bd636f393655b662e37ff4a118da0d2de0 /cmake | |
parent | f1b89a201e9329e6df48f8d6cf320781570c936a (diff) | |
download | libgit2-0a3a220fa9eba8cf9f8e250509958c2131b0a3c6.tar.gz |
Discover libssh2 without pkg-config
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindLibSSH2.cmake | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cmake/FindLibSSH2.cmake b/cmake/FindLibSSH2.cmake new file mode 100644 index 000000000..ff5893525 --- /dev/null +++ b/cmake/FindLibSSH2.cmake @@ -0,0 +1,13 @@ +# LIBSSH2_FOUND - system has the libssh2 library +# LIBSSH2_INCLUDE_DIR - the libssh2 include directory +# LIBSSH2_LIBRARY - the libssh2 library name + +FIND_PATH(LIBSSH2_INCLUDE_DIR libssh2.h) + +FIND_LIBRARY(LIBSSH2_LIBRARY NAMES ssh2 libssh2) + +INCLUDE(FindPackageHandleStandardArgs) +find_package_handle_standard_args(LibSSH2 + REQUIRED_VARS LIBSSH2_LIBRARY LIBSSH2_INCLUDE_DIR) + +MARK_AS_ADVANCED(LIBSSH2_INCLUDE_DIR LIBSSH2_LIBRARY) |