1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
# Copyright (C) 2023 Sony Interactive Entertainment Inc.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND ITS CONTRIBUTORS ``AS
# IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR ITS
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#[=======================================================================[.rst:
FindBrotli
--------------
Find Brotli headers and libraries.
Imported Targets
^^^^^^^^^^^^^^^^
``Brotli::common``
The Brotli common library, if found.
``Brotli::dec``
The Brotli dec library, if found.
Result Variables
^^^^^^^^^^^^^^^^
This will define the following variables in your project:
``Brotli_FOUND``
true if (the requested version of) Brotli is available.
``Brotli_VERSION``
the version of Brotli.
``Brotli_LIBRARIES``
the libraries to link against to use Brotli.
``Brotli_INCLUDE_DIRS``
where to find the Brotli headers.
``Brotli_COMPILE_OPTIONS``
this should be passed to target_compile_options(), if the
target is not used for linking
#]=======================================================================]
find_package(PkgConfig QUIET)
pkg_check_modules(PC_Brotli QUIET libbrotlicommon)
set(Brotli_COMPILE_OPTIONS ${PC_Brotli_CFLAGS_OTHER})
set(Brotli_VERSION ${PC_Brotli_VERSION})
find_library(Brotli_LIBRARY
NAMES ${Brotli_NAMES} brotlicommon
HINTS ${PC_Brotli_LIBDIR} ${PC_Brotli_LIBRARY_DIRS}
)
# There's nothing in the Brotli headers that could be used to detect the exact
# Brotli version being used so don't attempt to do so. A version can only be found
# through pkg-config
if ("${Brotli_FIND_VERSION}" VERSION_GREATER "${Brotli_VERSION}")
if (Brotli_VERSION)
message(FATAL_ERROR "Required version (" ${Brotli_FIND_VERSION} ") is higher than found version (" ${Brotli_VERSION} ")")
else ()
message(WARNING "Cannot determine Brotli version without pkg-config")
endif ()
endif ()
# Find components
if (Brotli_LIBRARY)
set(_Brotli_REQUIRED_LIBS_FOUND ON)
set(Brotli_LIBS_FOUND "Brotli (required): ${Brotli_LIBRARY}")
else ()
set(_Brotli_REQUIRED_LIBS_FOUND OFF)
set(Brotli_LIBS_NOT_FOUND "Brotli (required)")
endif ()
if ("dec" IN_LIST Brotli_FIND_COMPONENTS)
pkg_check_modules(PC_Brotli_DEC QUIET brotlidec)
find_path(Brotli_INCLUDE_DIR
NAMES brotli/decode.h
HINTS ${PC_Brotli_DEC_INCLUDEDIR} ${PC_Brotli_DEC_INCLUDE_DIRS}
)
find_library(Brotli_DEC_LIBRARY
NAMES ${Brotli_DEC_NAMES} Brotlidec
HINTS ${PC_Brotli_DEC_LIBDIR} ${PC_Brotli_DEC_LIBRARY_DIRS}
)
if (Brotli_DEC_LIBRARY)
if (Brotli_FIND_REQUIRED_dec)
list(APPEND Brotli_LIBS_FOUND "dec (required): ${Brotli_DEC_LIBRARY}")
else ()
list(APPEND Brotli_LIBS_FOUND "dec (optional): ${Brotli_DEC_LIBRARY}")
endif ()
else ()
if (Brotli_FIND_REQUIRED_dec)
set(_Brotli_REQUIRED_LIBS_FOUND OFF)
list(APPEND Brotli_LIBS_NOT_FOUND "dec (required)")
else ()
list(APPEND Brotli_LIBS_NOT_FOUND "dec (optional)")
endif ()
endif ()
endif ()
if (NOT Brotli_FIND_QUIETLY)
if (Brotli_LIBS_FOUND)
message(STATUS "Found the following Brotli libraries:")
foreach (found ${Brotli_LIBS_FOUND})
message(STATUS " ${found}")
endforeach ()
endif ()
if (Brotli_LIBS_NOT_FOUND)
message(STATUS "The following Brotli libraries were not found:")
foreach (found ${Brotli_LIBS_NOT_FOUND})
message(STATUS " ${found}")
endforeach ()
endif ()
endif ()
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Brotli
FOUND_VAR Brotli_FOUND
REQUIRED_VARS Brotli_LIBRARY _Brotli_REQUIRED_LIBS_FOUND
VERSION_VAR Brotli_VERSION
)
if (Brotli_LIBRARY AND NOT TARGET Brotli::common)
add_library(Brotli::common UNKNOWN IMPORTED GLOBAL)
set_target_properties(Brotli::common PROPERTIES
IMPORTED_LOCATION "${Brotli_LIBRARY}"
INTERFACE_COMPILE_OPTIONS "${Brotli_COMPILE_OPTIONS}"
)
endif ()
if (Brotli_DEC_LIBRARY AND NOT TARGET Brotli::dec)
add_library(Brotli::dec UNKNOWN IMPORTED GLOBAL)
set_target_properties(Brotli::dec PROPERTIES
IMPORTED_LOCATION "${Brotli_DEC_LIBRARY}"
INTERFACE_COMPILE_OPTIONS "${Brotli_COMPILE_OPTIONS}"
INTERFACE_INCLUDE_DIRECTORIES "${Brotli_DEC_INCLUDE_DIR}"
)
endif ()
mark_as_advanced(
Brotli_LIBRARY
Brotli_DEC_INCLUDE_DIR
Brotli_DEC_LIBRARY
)
if (Brotli_FOUND)
set(Brotli_LIBRARIES ${Brotli_LIBRARY} ${Brotli_DEC_LIBRARY})
set(Brotli_INCLUDE_DIRS ${Brotli_INCLUDE_DIR})
endif ()
|