1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-06 23:52:38 -05:00

Fix OpenSSL static link when BUILD_STATIC=ON is provided

This commit is contained in:
Alexandru Negrila
2020-04-09 09:09:21 +03:00
parent f9c65f3bbf
commit 89e6998054

View File

@@ -10,6 +10,11 @@ if (WITH_TLS)
set(OPENSSL_USE_STATIC_LIBS TRUE)
endif()
if (BUILD_STATIC)
set(OPENSSL_USE_STATIC_LIBS TRUE)
endif()
find_package(OpenSSL)
if (OPENSSL_FOUND)