From 6c23de16bb77d4007636d8838b66e633f2ffecb9 Mon Sep 17 00:00:00 2001 From: Arha Gatram Date: Mon, 6 Jul 2026 12:57:02 -0700 Subject: [PATCH] Update RAPIDS.cmake to log source of rapids-cmake --- cmake/RAPIDS.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmake/RAPIDS.cmake b/cmake/RAPIDS.cmake index a3ad5e3f48..03fb805894 100644 --- a/cmake/RAPIDS.cmake +++ b/cmake/RAPIDS.cmake @@ -1,6 +1,6 @@ # ============================================================================= # cmake-format: off -# SPDX-FileCopyrightText: Copyright (c) 2021-2026, NVIDIA CORPORATION. +# SPDX-FileCopyrightText: Copyright (c) 2021-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 # cmake-format: on # ============================================================================= @@ -67,9 +67,11 @@ if(rapids-cmake-fetch-via-git) GIT_REPOSITORY "${rapids-cmake-url}" GIT_TAG "${rapids-cmake-value-to-clone}" ) + message(STATUS "Fetching rapids-cmake from ${rapids-cmake-url}@${rapids-cmake-value-to-clone}") else() string(APPEND rapids-cmake-url "${rapids-cmake-value-to-clone}") FetchContent_Declare(rapids-cmake URL "${rapids-cmake-url}") + message(STATUS "Fetching rapids-cmake from ${rapids-cmake-url}") endif() FetchContent_GetProperties(rapids-cmake) if(rapids-cmake_POPULATED)