From 7e9270921f08903c8bc9c00e05da7b5a9e0d442f Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 14 Jun 2025 16:17:34 +1200 Subject: [PATCH] 'Generic Commit' --- CMakeLists.txt | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d85be60..810b0c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,20 +33,6 @@ find_package(OpenSSL REQUIRED) find_package(Drogon CONFIG REQUIRED) find_package(nlohmann_json REQUIRED) -# Create OpenSSL targets for cross-compilation if missing -if(NOT TARGET OpenSSL::SSL) - add_library(OpenSSL::SSL STATIC IMPORTED) - set_target_properties(OpenSSL::SSL PROPERTIES - IMPORTED_LOCATION "/usr/local/lib64/libssl.a" - INTERFACE_INCLUDE_DIRECTORIES "/usr/local/include") -endif() -if(NOT TARGET OpenSSL::Crypto) - add_library(OpenSSL::Crypto STATIC IMPORTED) - set_target_properties(OpenSSL::Crypto PROPERTIES - IMPORTED_LOCATION "/usr/local/lib64/libcrypto.a" - INTERFACE_INCLUDE_DIRECTORIES "/usr/local/include") -endif() - # Determine architecture-specific libunwind if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86_64|AMD64)$") set(LIBUNWIND_ARCH "x86_64")