mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-18 18:15:50 +00: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)
|