mirror of https://github.com/yandex/odyssey.git
12 lines
339 B
CMake
12 lines
339 B
CMake
|
|
# - Try to find the PAM libraries
|
|
#
|
|
# PAM_FOUND - pam was successfully found
|
|
# PAM_INCLUDE_DIR - pam include directory
|
|
# PAM_LIBRARIES - pam libraries
|
|
|
|
find_path(PAM_INCLUDE_DIR NAMES pam_appl.h PATH_SUFFIXES security pam)
|
|
find_library(PAM_LIBRARY pam)
|
|
|
|
find_package_handle_standard_args(PAM REQUIRED_VARS PAM_LIBRARY PAM_INCLUDE_DIR)
|