FindNGHTTP2.cmake 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at https://curl.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. # SPDX-License-Identifier: curl
  22. #
  23. ###########################################################################
  24. # Find the nghttp2 library
  25. #
  26. # Input variables:
  27. #
  28. # NGHTTP2_INCLUDE_DIR The nghttp2 include directory
  29. # NGHTTP2_LIBRARY Path to nghttp2 library
  30. #
  31. # Result variables:
  32. #
  33. # NGHTTP2_FOUND System has nghttp2
  34. # NGHTTP2_INCLUDE_DIRS The nghttp2 include directories
  35. # NGHTTP2_LIBRARIES The nghttp2 library names
  36. # NGHTTP2_VERSION Version of nghttp2
  37. if(CURL_USE_PKGCONFIG)
  38. find_package(PkgConfig QUIET)
  39. pkg_check_modules(PC_NGHTTP2 "libnghttp2")
  40. endif()
  41. find_path(NGHTTP2_INCLUDE_DIR NAMES "nghttp2/nghttp2.h"
  42. HINTS
  43. ${PC_NGHTTP2_INCLUDEDIR}
  44. ${PC_NGHTTP2_INCLUDE_DIRS}
  45. )
  46. find_library(NGHTTP2_LIBRARY NAMES "nghttp2" "nghttp2_static"
  47. HINTS
  48. ${PC_NGHTTP2_LIBDIR}
  49. ${PC_NGHTTP2_LIBRARY_DIRS}
  50. )
  51. if(PC_NGHTTP2_VERSION)
  52. set(NGHTTP2_VERSION ${PC_NGHTTP2_VERSION})
  53. elseif(NGHTTP2_INCLUDE_DIR AND EXISTS "${NGHTTP2_INCLUDE_DIR}/nghttp2/nghttp2ver.h")
  54. set(_version_regex "#[\t ]*define[\t ]+NGHTTP2_VERSION[\t ]+\"([^\"]*)\"")
  55. file(STRINGS "${NGHTTP2_INCLUDE_DIR}/nghttp2/nghttp2ver.h" _version_str REGEX "${_version_regex}")
  56. string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
  57. set(NGHTTP2_VERSION "${_version_str}")
  58. unset(_version_regex)
  59. unset(_version_str)
  60. endif()
  61. include(FindPackageHandleStandardArgs)
  62. find_package_handle_standard_args(NGHTTP2
  63. REQUIRED_VARS
  64. NGHTTP2_INCLUDE_DIR
  65. NGHTTP2_LIBRARY
  66. VERSION_VAR
  67. NGHTTP2_VERSION
  68. )
  69. if(NGHTTP2_FOUND)
  70. set(NGHTTP2_INCLUDE_DIRS ${NGHTTP2_INCLUDE_DIR})
  71. set(NGHTTP2_LIBRARIES ${NGHTTP2_LIBRARY})
  72. endif()
  73. mark_as_advanced(NGHTTP2_INCLUDE_DIR NGHTTP2_LIBRARY)