From 221c2a632770d9a2fd799b95ab10ca6ec00a006e Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 13 Feb 2024 15:18:00 -0600 Subject: [PATCH] find_package(cuFile QUIET) Co-authored-by: Vyas Ramasubramani --- cpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 9fdcbfcd23..7dbe177535 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -134,7 +134,7 @@ if(NOT already_set_kvikio) set_property(DIRECTORY PROPERTY kvikio_already_set_defines "ON") # Find cuFile and determine which features are supported - find_package(cuFile) + find_package(cuFile QUIET) if(NOT cuFile_FOUND) message(WARNING "KvikIO: Building KvikIO without cuFile") else()