diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-05-12 16:19:53 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-05-12 16:19:53 +0200 |
commit | 020d08746520329c3afa3bde57cbd3e4dc831b4c (patch) | |
tree | b7b3bc79220902869306c75eeab6c94a1bff350d | |
parent | 728e7c7fcf2435172a86e621746db5218bdda0cd (diff) |
Core/Crypto: Change required OpenSSL version to 3.0
-rw-r--r-- | dep/openssl/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dep/openssl/CMakeLists.txt b/dep/openssl/CMakeLists.txt index 1282fd32f38..cd2706ede0d 100644 --- a/dep/openssl/CMakeLists.txt +++ b/dep/openssl/CMakeLists.txt @@ -11,7 +11,7 @@ # basic packagesearching and setup # (further support will be needed, this is a preliminary release!) -find_package(OpenSSL 1.1 REQUIRED COMPONENTS Crypto SSL) +find_package(OpenSSL 3 REQUIRED COMPONENTS Crypto SSL) add_library(openssl INTERFACE) |