From 761e70a4b57808c6df77ce6b9b47f55c99bdc44c Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Mon, 4 Nov 2024 22:24:28 +0000 Subject: [PATCH] Fix case of find_package call --- python/kvikio/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/kvikio/CMakeLists.txt b/python/kvikio/CMakeLists.txt index 4e40e86fa6..4db09123d4 100644 --- a/python/kvikio/CMakeLists.txt +++ b/python/kvikio/CMakeLists.txt @@ -31,7 +31,7 @@ option(USE_NVCOMP_RUNTIME_WHEEL "Use the nvcomp wheel at runtime instead of the # TODO: Should we symlink FindcuFile.cmake into python/cmake? find cuFile include(../../cpp/cmake/Modules/FindcuFile.cmake) -find_package(KvikIO REQUIRED "${RAPIDS_VERSION}") +find_package(kvikio REQUIRED "${RAPIDS_VERSION}") find_package(CUDAToolkit REQUIRED)