2020-03-23 21:44:29 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2023-01-02 20:51:48 +08:00
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2020-03-23 21:44:29 +08:00
|
|
|
###########################################################################
|
2018-03-17 03:49:13 +08:00
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
|
|
|
|
find_path(BROTLI_INCLUDE_DIR "brotli/decode.h")
|
|
|
|
|
|
|
|
find_library(BROTLICOMMON_LIBRARY NAMES brotlicommon)
|
|
|
|
find_library(BROTLIDEC_LIBRARY NAMES brotlidec)
|
|
|
|
|
2023-02-11 01:44:36 +08:00
|
|
|
find_package_handle_standard_args(Brotli
|
2024-05-20 00:49:42 +08:00
|
|
|
FOUND_VAR
|
|
|
|
BROTLI_FOUND
|
|
|
|
REQUIRED_VARS
|
|
|
|
BROTLIDEC_LIBRARY
|
|
|
|
BROTLICOMMON_LIBRARY
|
|
|
|
BROTLI_INCLUDE_DIR
|
|
|
|
FAIL_MESSAGE
|
|
|
|
"Could NOT find Brotli"
|
2018-03-17 03:49:13 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
set(BROTLI_INCLUDE_DIRS ${BROTLI_INCLUDE_DIR})
|
2024-05-23 22:44:40 +08:00
|
|
|
set(BROTLI_LIBRARIES ${BROTLIDEC_LIBRARY} ${BROTLICOMMON_LIBRARY})
|