mirror of
https://github.com/BLAKE3-team/BLAKE3
synced 2026-03-08 00:06:20 +01:00
15 lines
277 B
CMake
15 lines
277 B
CMake
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
# Remember TBB option state
|
|
set(BLAKE3_USE_TBB @BLAKE3_USE_TBB@)
|
|
|
|
if(BLAKE3_USE_TBB)
|
|
find_dependency(TBB @TBB_VERSION@)
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/blake3-targets.cmake")
|
|
|
|
check_required_components(blake3)
|