FindReadline.cmake 1.7 KB

1234567891011121314151617181920212223242526272829303132
  1. # Copyright (c) 2008-2022 the Urho3D project
  2. # License: MIT
  3. # Find Readline development library
  4. #
  5. # READLINE_FOUND
  6. # READLINE_INCLUDE_DIRS
  7. # READLINE_LIBRARIES
  8. #
  9. if (APPLE AND NOT READLINE_INCLUDE_DIRS AND NOT READLINE_LIBRARIES)
  10. # Assuming GNU Readline development library is installed using Homebrew (keg-only - prebuilt universal binary)
  11. execute_process (COMMAND find /usr/local/Cellar/readline -type d -name include OUTPUT_VARIABLE INC_HINTS ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
  12. execute_process (COMMAND find /usr/local/Cellar/readline -type d -name lib OUTPUT_VARIABLE LIB_HINTS ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
  13. elseif (NATIVE_64BIT AND NOT URHO3D_64BIT)
  14. # To cater for 32-bit build on 64-bit host system using Debian-based distros; no special handling required for Redhat-based distros but no harm done in doing below
  15. set (LIB_HINTS /usr/lib32)
  16. endif ()
  17. find_path (READLINE_INCLUDE_DIRS NAMES readline/readline.h HINTS ${INC_HINTS} PATH_SUFFIXES readline DOC "Readline include directory")
  18. if (READLINE_INCLUDE_DIRS AND CMAKE_LIBRARY_ARCHITECTURE)
  19. list (APPEND READLINE_INCLUDE_DIRS ${READLINE_INCLUDE_DIRS}/${CMAKE_LIBRARY_ARCHITECTURE})
  20. endif ()
  21. find_library (READLINE_LIBRARIES NAMES readline HINTS ${LIB_HINTS} DOC "Readline library")
  22. if (NOT APPLE AND NATIVE_64BIT AND NOT URHO3D_64BIT AND READLINE_LIBRARIES MATCHES 64)
  23. unset (READLINE_LIBRARIES CACHE) # Nullify the search result if the ABI is not matched
  24. unset (READLINE_LIBRARIES)
  25. endif ()
  26. include (FindPackageHandleStandardArgs)
  27. find_package_handle_standard_args (Readline REQUIRED_VARS READLINE_LIBRARIES READLINE_INCLUDE_DIRS FAIL_MESSAGE "Could NOT find Readline development library")
  28. mark_as_advanced (READLINE_INCLUDE_DIRS READLINE_LIBRARIES)