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 166
|
# Copyright (C) 2020 Sony Interactive Entertainment Inc.
# Copyright (C) 2017 Igalia S.L.
#
# 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:
FindWOFF2
--------------
Find WOFF2 headers and libraries.
Imported Targets
^^^^^^^^^^^^^^^^
``WOFF2::common``
The WOFF2 common library, if found.
``WOFF2::dec``
The WOFF2 dec library, if found.
Result Variables
^^^^^^^^^^^^^^^^
This will define the following variables in your project:
``WOFF2_FOUND``
true if (the requested version of) WOFF2 is available.
``WOFF2_VERSION``
the version of WOFF2.
``WOFF2_LIBRARIES``
the libraries to link against to use WOFF2.
``WOFF2_INCLUDE_DIRS``
where to find the WOFF2 headers.
``WOFF2_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_WOFF2 QUIET libwoff2common)
set(WOFF2_COMPILE_OPTIONS ${PC_WOFF2_CFLAGS_OTHER})
set(WOFF2_VERSION ${PC_WOFF2_VERSION})
find_library(WOFF2_LIBRARY
NAMES ${WOFF2_NAMES} woff2common
HINTS ${PC_WOFF2_LIBDIR} ${PC_WOFF2_LIBRARY_DIRS}
)
# There's nothing in the WOFF2 headers that could be used to detect the exact
# WOFF2 version being used so don't attempt to do so. A version can only be found
# through pkg-config
if ("${WOFF2_FIND_VERSION}" VERSION_GREATER "${WOFF2_VERSION}")
if (WOFF2_VERSION)
message(FATAL_ERROR "Required version (" ${WOFF2_FIND_VERSION} ") is higher than found version (" ${WOFF2_VERSION} ")")
else ()
message(WARNING "Cannot determine WOFF2 version without pkg-config")
endif ()
endif ()
# Find components
if (WOFF2_LIBRARY)
set(_WOFF2_REQUIRED_LIBS_FOUND ON)
set(WOFF2_LIBS_FOUND "WOFF2 (required): ${WOFF2_LIBRARY}")
else ()
set(_WOFF2_REQUIRED_LIBS_FOUND OFF)
set(WOFF2_LIBS_NOT_FOUND "WOFF2 (required)")
endif ()
if ("dec" IN_LIST WOFF2_FIND_COMPONENTS)
pkg_check_modules(PC_WOFF2_DEC QUIET libwoff2dec)
find_path(WOFF2_INCLUDE_DIR
NAMES woff2/decode.h
HINTS ${PC_WOFF2_DEC_INCLUDEDIR} ${PC_WOFF2_DEC_INCLUDE_DIRS}
)
find_library(WOFF2_DEC_LIBRARY
NAMES ${WOFF2_DEC_NAMES} woff2dec
HINTS ${PC_WOFF2_DEC_LIBDIR} ${PC_WOFF2_DEC_LIBRARY_DIRS}
)
if (WOFF2_DEC_LIBRARY)
if (WOFF2_FIND_REQUIRED_dec)
list(APPEND WOFF2_LIBS_FOUND "dec (required): ${WOFF2_DEC_LIBRARY}")
else ()
list(APPEND WOFF2_LIBS_FOUND "dec (optional): ${WOFF2_DEC_LIBRARY}")
endif ()
else ()
if (WOFF2_FIND_REQUIRED_dec)
set(_WOFF2_REQUIRED_LIBS_FOUND OFF)
list(APPEND WOFF2_LIBS_NOT_FOUND "dec (required)")
else ()
list(APPEND WOFF2_LIBS_NOT_FOUND "dec (optional)")
endif ()
endif ()
endif ()
if (NOT WOFF2_FIND_QUIETLY)
if (WOFF2_LIBS_FOUND)
message(STATUS "Found the following WOFF2 libraries:")
foreach (found ${WOFF2_LIBS_FOUND})
message(STATUS " ${found}")
endforeach ()
endif ()
if (WOFF2_LIBS_NOT_FOUND)
message(STATUS "The following WOFF2 libraries were not found:")
foreach (found ${WOFF2_LIBS_NOT_FOUND})
message(STATUS " ${found}")
endforeach ()
endif ()
endif ()
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(WOFF2
FOUND_VAR WOFF2_FOUND
REQUIRED_VARS WOFF2_LIBRARY _WOFF2_REQUIRED_LIBS_FOUND
VERSION_VAR WOFF2_VERSION
)
if (WOFF2_LIBRARY AND NOT TARGET WOFF2::common)
add_library(WOFF2::common UNKNOWN IMPORTED GLOBAL)
set_target_properties(WOFF2::common PROPERTIES
IMPORTED_LOCATION "${WOFF2_LIBRARY}"
INTERFACE_COMPILE_OPTIONS "${WOFF2_COMPILE_OPTIONS}"
)
endif ()
if (WOFF2_DEC_LIBRARY AND NOT TARGET WOFF2::dec)
add_library(WOFF2::dec UNKNOWN IMPORTED GLOBAL)
set_target_properties(WOFF2::dec PROPERTIES
IMPORTED_LOCATION "${WOFF2_DEC_LIBRARY}"
INTERFACE_COMPILE_OPTIONS "${WOFF2_COMPILE_OPTIONS}"
INTERFACE_INCLUDE_DIRECTORIES "${WOFF2_DEC_INCLUDE_DIR}"
)
endif ()
mark_as_advanced(
WOFF2_LIBRARY
WOFF2_DEC_INCLUDE_DIR
WOFF2_DEC_LIBRARY
)
if (WOFF2_FOUND)
set(WOFF2_LIBRARIES ${WOFF2_LIBRARY} ${WOFF2_DEC_LIBRARY})
set(WOFF2_INCLUDE_DIRS ${WOFF2_INCLUDE_DIR})
endif ()
|