qt5base-lts/cmake/FindLibb2.cmake
Linus Jahn c19bafc60c QtCore: Use system-wide libb2 if present
This adds the option to build Qt with libb2, which is especially
recommended, if you care about the performance of the BLAKE2 hashing
algorithms. The bundled version is the pure reference C implementation
of BLAKE2, while libb2 has many additional hardware optimizations.
However, the API of both is the same, so no changes to the code were
necessary here.

Change-Id: I3563982f4e07be300291fe103c38b16a404b3ebb
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
2020-07-31 15:05:24 +02:00

8 lines
143 B
CMake

find_package(PkgConfig QUIET)
pkg_check_modules(Libb2 libb2 IMPORTED_TARGET)
if (NOT TARGET PkgConfig::Libb2)
set(Libb2_FOUND 0)
endif()