From 9ae258217aa96cdd560b27c4de9893e560cf11d1 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Tue, 18 May 2021 15:30:01 -0400 Subject: [PATCH] Make sure we use CalVer when checking out rapids-cmake (#230) Make sure to use CalVer when we clone `rapids-cmake` Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) - Divye Gala (https://github.com/divyegala) URL: https://github.com/rapidsai/raft/pull/230 --- cpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index dd8cd6f4b2..3be28f0768 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -19,7 +19,7 @@ include(FetchContent) FetchContent_Declare( rapids-cmake GIT_REPOSITORY https://github.com/rapidsai/rapids-cmake.git - GIT_TAG origin/branch-0.20 + GIT_TAG origin/branch-21.06 ) FetchContent_MakeAvailable(rapids-cmake) include(rapids-cmake)