mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

Needed to readd the broctl/broccoli/binpac submodules manually, as git seemed to get confused by the existing directories.
56 lines
1.5 KiB
CMake
56 lines
1.5 KiB
CMake
# - Try to find openssl include dirs and libraries
|
|
#
|
|
# Usage of this module as follows:
|
|
#
|
|
# find_package(OpenSSL)
|
|
#
|
|
# Variables used by this module, they can change the default behaviour and need
|
|
# to be set before calling find_package:
|
|
#
|
|
# OpenSSL_ROOT_DIR Set this variable to the root installation of
|
|
# openssl if the module has problems finding the
|
|
# proper installation path.
|
|
#
|
|
# Variables defined by this module:
|
|
#
|
|
# OPENSSL_FOUND System has openssl, include and library dirs found
|
|
# OpenSSL_INCLUDE_DIR The openssl include directories.
|
|
# OpenSSL_LIBRARIES The openssl libraries.
|
|
# OpenSSL_CYRPTO_LIBRARY The openssl crypto library.
|
|
# OpenSSL_SSL_LIBRARY The openssl ssl library.
|
|
|
|
find_path(OpenSSL_ROOT_DIR
|
|
NAMES include/openssl/ssl.h
|
|
)
|
|
|
|
find_path(OpenSSL_INCLUDE_DIR
|
|
NAMES openssl/ssl.h
|
|
HINTS ${OpenSSL_ROOT_DIR}/include
|
|
)
|
|
|
|
find_library(OpenSSL_SSL_LIBRARY
|
|
NAMES ssl ssleay32 ssleay32MD
|
|
HINTS ${OpenSSL_ROOT_DIR}/lib
|
|
)
|
|
|
|
find_library(OpenSSL_CRYPTO_LIBRARY
|
|
NAMES crypto
|
|
HINTS ${OpenSSL_ROOT_DIR}/lib
|
|
)
|
|
|
|
set(OpenSSL_LIBRARIES ${OpenSSL_SSL_LIBRARY} ${OpenSSL_CRYPTO_LIBRARY}
|
|
CACHE STRING "OpenSSL SSL and crypto libraries" FORCE)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(OpenSSL DEFAULT_MSG
|
|
OpenSSL_LIBRARIES
|
|
OpenSSL_INCLUDE_DIR
|
|
)
|
|
|
|
mark_as_advanced(
|
|
OpenSSL_ROOT_DIR
|
|
OpenSSL_INCLUDE_DIR
|
|
OpenSSL_LIBRARIES
|
|
OpenSSL_CRYPTO_LIBRARY
|
|
OpenSSL_SSL_LIBRARY
|
|
)
|