Merge pull request #7061 from awakecoding/openssl-link-order-android

Fix OpenSSL link library order on Android
This commit is contained in:
David Fort 2021-05-31 10:57:57 +02:00 committed by GitHub
commit 3b178bb4b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,7 +88,7 @@ IF(ANDROID)
"lib"
)
list(APPEND OPENSSL_LIBRARIES ${CRYPTO_LIBRARY} ${SSL_LIBRARY})
list(APPEND OPENSSL_LIBRARIES ${SSL_LIBRARY} ${CRYPTO_LIBRARY})
ELSEIF(WIN32 AND NOT CYGWIN)
# MINGW should go here too
IF(MSVC)