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