1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-08-08 19:02:07 +03:00

cmake: rename mbedTLS and wolfSSL Find modules

To match the curl ones.

Cherry-picked from #1445
This commit is contained in:
Viktor Szakats
2024-08-18 12:56:13 +02:00
parent 0e9b5daa25
commit 570de0f23f
5 changed files with 8 additions and 8 deletions

View File

@@ -7,11 +7,11 @@ list(PREPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR})
if("@CRYPTO_BACKEND@" STREQUAL "OpenSSL")
find_dependency(OpenSSL)
elseif("@CRYPTO_BACKEND@" STREQUAL "wolfSSL")
find_package(wolfssl)
find_package(WolfSSL)
elseif("@CRYPTO_BACKEND@" STREQUAL "Libgcrypt")
find_package(Libgcrypt)
elseif("@CRYPTO_BACKEND@" STREQUAL "mbedTLS")
find_package(mbedTLS)
find_package(MbedTLS)
endif()
if(@ZLIB_FOUND@)