Move to OpenSSLv3 (& Drop 32-bit) (#4883)

This commit is contained in:
Zach H 2023-10-01 17:19:31 -04:00 committed by GitHub
parent 0deb037035
commit b0470ab678
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 15 additions and 94 deletions

View file

@ -225,7 +225,16 @@ endif()
#Find OpenSSL
if(WIN32)
find_package(Win32SslRuntime)
find_package(OpenSSL REQUIRED)
if(OPENSSL_FOUND)
include_directories(${OPENSSL_INCLUDE_DIRS})
message(STATUS "Using OpenSSL ${OPENSSL_VERSION}")
else()
message(
WARNING
"Could not find OpenSSL runtime libraries. They are not required for compiling, but needs to be available at runtime."
)
endif()
endif()
#Find VCredist