mirror of
https://github.com/apache/impala.git
synced 2026-01-07 18:02:33 -05:00
48 lines
1.2 KiB
CMake
48 lines
1.2 KiB
CMake
# - Find SASL security library.
|
|
# This module defines
|
|
# SASL_INCLUDE_DIR, where to find SASL headers
|
|
# SASL_STATIC_LIBRARY, the library to use.
|
|
# SASL_FOUND, If false, do not try to use.
|
|
|
|
set(THIRDPARTY_SASL thirdparty/cyrus-sasl-$ENV{IMPALA_CYRUS_SASL_VERSION})
|
|
|
|
if (DEFINED ENV{PIC_LIB_PATH})
|
|
set(SASL_SEARCH_LIB_PATH $ENV{PIC_LIB_PATH}/lib)
|
|
set(SASL_INCLUDE_DIR $ENV{PIC_LIB_PATH}/include)
|
|
else ()
|
|
set (THIRDPARTY ${CMAKE_SOURCE_DIR}/thirdparty)
|
|
set(SASL_SEARCH_LIB_PATH
|
|
${THIRDPARTY}/cyrus-sasl-$ENV{IMPALA_CYRUS_SASL_VERSION}/build/lib
|
|
)
|
|
set(SASL_INCLUDE_DIR
|
|
${THIRDPARTY}/cyrus-sasl-$ENV{IMPALA_CYRUS_SASL_VERSION}/build/include
|
|
)
|
|
endif ()
|
|
|
|
find_library(SASL_LIB_PATH NAMES sasl2
|
|
PATHS ${SASL_SEARCH_LIB_PATH}
|
|
NO_DEFAULT_PATH
|
|
DOC "Cyrus-sasl library"
|
|
)
|
|
|
|
if (SASL_LIB_PATH)
|
|
set(SASL_FOUND TRUE)
|
|
set(SASL_STATIC_LIBRARY ${SASL_SEARCH_LIB_PATH}/libsasl2.a)
|
|
else ()
|
|
set(SASL_FOUND FALSE)
|
|
endif ()
|
|
|
|
if (SASL_FOUND)
|
|
if (NOT SASL_FIND_QUIETLY)
|
|
message(STATUS "Found SASL ${SASL_STATIC_LIBRARY}")
|
|
endif ()
|
|
else ()
|
|
message(STATUS "SASL includes and libraries NOT found.")
|
|
endif ()
|
|
|
|
|
|
mark_as_advanced(
|
|
SASL_STATIC_LIBRARY
|
|
SASL_INCLUDE_DIR
|
|
)
|