mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-08-01 05:40:24 -07:00
Move to OpenSSLv3 (& Drop 32-bit) (#4883)
This commit is contained in:
parent
0deb037035
commit
b0470ab678
6 changed files with 15 additions and 94 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue