diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-09-06 12:51:08 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-09-06 12:51:08 +0200 |
commit | b8f18fad29df98d5e8dee1ba28cd5f01fbdf9832 (patch) | |
tree | edc41a74a43855ce71ddfb75442795a2f15d8f84 /dep/openssl | |
parent | 0a496d1f2768e9b6f9d6825c5dd35a162b42a308 (diff) |
Core/Crypto: Remove support for OpenSSL 1.0
Diffstat (limited to 'dep/openssl')
-rw-r--r-- | dep/openssl/CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dep/openssl/CMakeLists.txt b/dep/openssl/CMakeLists.txt index c76fa03dd3f..1282fd32f38 100644 --- a/dep/openssl/CMakeLists.txt +++ b/dep/openssl/CMakeLists.txt @@ -11,9 +11,7 @@ # basic packagesearching and setup # (further support will be needed, this is a preliminary release!) -set(OPENSSL_EXPECTED_VERSION 1.0.0) - -find_package(OpenSSL REQUIRED COMPONENTS Crypto SSL) +find_package(OpenSSL 1.1 REQUIRED COMPONENTS Crypto SSL) add_library(openssl INTERFACE) |