From 77e413f01a5d73ee1366487c45b499f59f5758bd Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Mon, 24 Feb 2025 22:48:02 +0100 Subject: CMakeLists.txt: Lower required OpenSSL version Even if OpenSSL 1.0 is no longer supported [1], slcl still builds and works fine with it, so there is no reason to require a higher version. [1]: https://openssl-library.org/policies/releasestrat/index.html --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c0f72fa..8c216d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ else() endif() find_package(cJSON 1.0 REQUIRED) -find_package(OpenSSL 2.0 REQUIRED) +find_package(OpenSSL 1.0 REQUIRED) target_link_libraries(${PROJECT_NAME} PRIVATE web dynstr cjson OpenSSL::SSL) install(TARGETS ${PROJECT_NAME}) install(FILES usergen -- cgit v1.2.3