• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#***************************************************************************
2#                                  _   _ ____  _
3#  Project                     ___| | | |  _ \| |
4#                             / __| | | | |_) | |
5#                            | (__| |_| |  _ <| |___
6#                             \___|\___/|_| \_\_____|
7#
8# Copyright (C) 1998 - 2020, 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###########################################################################
22
23#[=======================================================================[.rst:
24FindNGHTTP3
25----------
26
27Find the nghttp3 library
28
29Result Variables
30^^^^^^^^^^^^^^^^
31
32``NGHTTP3_FOUND``
33  System has nghttp3
34``NGHTTP3_INCLUDE_DIRS``
35  The nghttp3 include directories.
36``NGHTTP3_LIBRARIES``
37  The libraries needed to use nghttp3
38``NGHTTP3_VERSION``
39  version of nghttp3.
40#]=======================================================================]
41
42if(UNIX)
43  find_package(PkgConfig QUIET)
44  pkg_search_module(PC_NGHTTP3 libnghttp3)
45endif()
46
47find_path(NGHTTP3_INCLUDE_DIR nghttp3/nghttp3.h
48  HINTS
49    ${PC_NGHTTP3_INCLUDEDIR}
50    ${PC_NGHTTP3_INCLUDE_DIRS}
51)
52
53find_library(NGHTTP3_LIBRARY NAMES nghttp3
54  HINTS
55    ${PC_NGHTTP3_LIBDIR}
56    ${PC_NGHTTP3_LIBRARY_DIRS}
57)
58
59if(PC_NGHTTP3_VERSION)
60  set(NGHTTP3_VERSION ${PC_NGHTTP3_VERSION})
61endif()
62
63include(FindPackageHandleStandardArgs)
64find_package_handle_standard_args(NGHTTP3
65  REQUIRED_VARS
66    NGHTTP3_LIBRARY
67    NGHTTP3_INCLUDE_DIR
68  VERSION_VAR NGHTTP3_VERSION
69)
70
71if(NGHTTP3_FOUND)
72  set(NGHTTP3_LIBRARIES    ${NGHTTP3_LIBRARY})
73  set(NGHTTP3_INCLUDE_DIRS ${NGHTTP3_INCLUDE_DIR})
74endif()
75
76mark_as_advanced(NGHTTP3_INCLUDE_DIRS NGHTTP3_LIBRARIES)
77