You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that brotli package name is inconsistent in cmake files.
CMakeLists.txt contains string find_package(BROTLI QUIET)
but there is a file CMake/FindBrotli.cmake
It seems that either CMake/FindBrotli.cmake should be renamed to CMake/FindBROTLI.cmake or find_package(BROTLI QUIET) should be replaced with find_package(Brotli QUIET)
Otherwise find_package fails to find brotli on Linux machine with the following message:
By not providing "FindBROTLI.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "BROTLI", but
CMake did not find one.
Could not find a package configuration file provided by "BROTLI" with any
of the following names:
BROTLIConfig.cmake
brotli-config.cmake
Add the installation prefix of "BROTLI" to CMAKE_PREFIX_PATH or set
"BROTLI_DIR" to a directory containing one of the above files. If "BROTLI"
provides a separate development package or SDK, be sure it has been
installed.
The text was updated successfully, but these errors were encountered:
It seems that brotli package name is inconsistent in cmake files.
CMakeLists.txt contains string find_package(BROTLI QUIET)
but there is a file CMake/FindBrotli.cmake
It seems that either CMake/FindBrotli.cmake should be renamed to CMake/FindBROTLI.cmake or find_package(BROTLI QUIET) should be replaced with find_package(Brotli QUIET)
Otherwise find_package fails to find brotli on Linux machine with the following message:
The text was updated successfully, but these errors were encountered: