You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
524 B
21 lines
524 B
include(FindPackageHandleStandardArgs)
|
|
|
|
find_path(BROTLI_INCLUDE_DIR "brotli/decode.h")
|
|
|
|
find_library(BROTLICOMMON_LIBRARY NAMES brotlicommon)
|
|
find_library(BROTLIDEC_LIBRARY NAMES brotlidec)
|
|
|
|
find_package_handle_standard_args(BROTLI
|
|
FOUND_VAR
|
|
BROTLI_FOUND
|
|
REQUIRED_VARS
|
|
BROTLIDEC_LIBRARY
|
|
BROTLICOMMON_LIBRARY
|
|
BROTLI_INCLUDE_DIR
|
|
FAIL_MESSAGE
|
|
"Could NOT find BROTLI"
|
|
)
|
|
|
|
set(BROTLI_INCLUDE_DIRS ${BROTLI_INCLUDE_DIR})
|
|
set(BROTLI_LIBRARIES ${BROTLICOMMON_LIBRARY} ${BROTLIDEC_LIBRARY})
|