etlegacy-libs/curl/CMake/FindOpenSSL.cmake
Remy Marquis 5d31d90fa4 Reverted to cURL 7.26
This reverts commit dad99ac8e3.
This reverts commit e5639398e7.
This reverts commit cf4eae3ded.
2015-03-05 12:02:51 +01:00

19 lines
455 B
CMake

# Extension of the standard FindOpenSSL.cmake
# Adds OPENSSL_INCLUDE_DIRS and libeay32
include("${CMAKE_ROOT}/Modules/FindOpenSSL.cmake")
# Bill Hoffman told that libeay32 is necessary for him:
find_library(SSL_LIBEAY NAMES libeay32)
if(OPENSSL_FOUND)
if(SSL_LIBEAY)
list(APPEND OPENSSL_LIBRARIES ${SSL_LIBEAY})
else()
set(OPENSSL_FOUND FALSE)
endif()
endif()
if(OPENSSL_FOUND)
set(OPENSSL_INCLUDE_DIRS ${OPENSSL_INCLUDE_DIR})
endif()