From 405413097506d2109997c6817bfc1e8dd2eff30a Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Tue, 27 Jul 2021 11:45:39 -0400 Subject: [PATCH] Correct incorrectly named function in get_spdlog.cmake --- cpp/cmake/thirdparty/get_spdlog.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/cmake/thirdparty/get_spdlog.cmake b/cpp/cmake/thirdparty/get_spdlog.cmake index 4f96d4a799..4598a981c8 100644 --- a/cpp/cmake/thirdparty/get_spdlog.cmake +++ b/cpp/cmake/thirdparty/get_spdlog.cmake @@ -14,7 +14,7 @@ # limitations under the License. #============================================================================= -function(find_and_configure_nccl) +function(find_and_configure_spdlog) if(TARGET spdlog::spdlog) return() @@ -33,5 +33,5 @@ function(find_and_configure_nccl) endfunction() -find_and_configure_nccl(VERSION 1.7.0 - PINNED_TAG 1.7.0) +find_and_configure_spdlog(VERSION 1.7.0 + PINNED_TAG 1.7.0)