diff options
Diffstat (limited to 'modules/FindOpenSSL.cmake')
-rw-r--r-- | modules/FindOpenSSL.cmake | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/FindOpenSSL.cmake b/modules/FindOpenSSL.cmake index ada33cf0..5449f1f6 100644 --- a/modules/FindOpenSSL.cmake +++ b/modules/FindOpenSSL.cmake @@ -4,19 +4,16 @@ # OPENSSL_FOUND - system has the OpenSSL library # OPENSSL_INCLUDE_DIR - the OpenSSL include directory # OPENSSL_LIBRARIES - The libraries needed to use OpenSSL -FIND_PACKAGE(GNUWIN32) FIND_PATH(OPENSSL_INCLUDE_DIR openssl/ssl.h /usr/include/ /usr/local/include/ - ${GNUWIN32_DIR}/include ) FIND_LIBRARY(OPENSSL_LIBRARIES NAMES ssl ssleay32 PATHS /usr/lib /usr/local/lib - ${GNUWIN32_DIR}/lib ) if (OPENSSL_INCLUDE_DIR AND OPENSSL_LIBRARIES) |