FindNGHTTP2.cmake 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. if(UNIX)
  25. find_package(PkgConfig QUIET)
  26. pkg_search_module(PC_NGHTTP2 "libnghttp2")
  27. endif()
  28. find_path(NGHTTP2_INCLUDE_DIR "nghttp2/nghttp2.h"
  29. HINTS
  30. ${PC_NGHTTP2_INCLUDEDIR}
  31. ${PC_NGHTTP2_INCLUDE_DIRS}
  32. )
  33. find_library(NGHTTP2_LIBRARY NAMES "nghttp2" "nghttp2_static"
  34. HINTS
  35. ${PC_NGHTTP2_LIBDIR}
  36. ${PC_NGHTTP2_LIBRARY_DIRS}
  37. )
  38. if(PC_NGHTTP2_VERSION)
  39. set(NGHTTP2_VERSION ${PC_NGHTTP2_VERSION})
  40. endif()
  41. include(FindPackageHandleStandardArgs)
  42. find_package_handle_standard_args(NGHTTP2
  43. FOUND_VAR
  44. NGHTTP2_FOUND
  45. REQUIRED_VARS
  46. NGHTTP2_LIBRARY
  47. NGHTTP2_INCLUDE_DIR
  48. VERSION_VAR NGHTTP2_VERSION
  49. )
  50. if(NGHTTP2_FOUND)
  51. set(NGHTTP2_INCLUDE_DIRS ${NGHTTP2_INCLUDE_DIR})
  52. set(NGHTTP2_LIBRARIES ${NGHTTP2_LIBRARY})
  53. endif()
  54. mark_as_advanced(NGHTTP2_INCLUDE_DIRS NGHTTP2_LIBRARIES)