You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
990 B
34 lines
990 B
# Find readline
|
|
#
|
|
# Find the readline includes and library
|
|
#
|
|
# if you nee to add a custom library search path, do it via via CMAKE_PREFIX_PATH
|
|
#
|
|
# This module defines
|
|
# READLINE_INCLUDE_DIRS, where to find header, etc.
|
|
# READLINE_LIBRARIES, the libraries needed to use readline.
|
|
# READLINE_FOUND, If false, do not try to use readline.
|
|
|
|
# only look in default directories
|
|
find_path(
|
|
READLINE_INCLUDE_DIR
|
|
NAMES readline/readline.h
|
|
DOC "readling include dir"
|
|
)
|
|
|
|
find_library(
|
|
READLINE_LIBRARY
|
|
NAMES readline
|
|
DOC "readline library"
|
|
)
|
|
|
|
set(READLINE_INCLUDE_DIRS ${READLINE_INCLUDE_DIR})
|
|
set(READLINE_LIBRARIES ${READLINE_LIBRARY})
|
|
|
|
# handle the QUIETLY and REQUIRED arguments and set READLINE_FOUND to TRUE
|
|
# if all listed variables are TRUE, hide their existence from configuration view
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(readline DEFAULT_MSG
|
|
READLINE_INCLUDE_DIR READLINE_LIBRARY)
|
|
mark_as_advanced (READLINE_INCLUDE_DIR READLINE_LIBRARY)
|
|
|
|
|