diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2025-02-24 22:48:02 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2025-02-24 23:05:24 +0100 |
| commit | 77e413f01a5d73ee1366487c45b499f59f5758bd (patch) | |
| tree | 0b426ef95c047e451992012478a1c3f4aa624d6b | |
| parent | 681005b8f62245816c18f7190bb02078037de200 (diff) | |
| download | slcl-77e413f01a5d73ee1366487c45b499f59f5758bd.tar.gz | |
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
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
