From 496427f6668c9430957b0077970ae52b2f591c49 Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Thu, 3 Oct 2024 12:28:06 -0700 Subject: [PATCH] Remove cuvs-cagra-search from cuvs_static link (#388) Seeing build errors in the cuml wheels, and the only difference afaict was adding the cuvs-cagra-search to link to the static library. Removing this since cuml is the only consumer of the static library this release and doesn't use cagra (will revisit in 24.12) --- cpp/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 52c5f6624..66d489c24 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -566,7 +566,7 @@ if(NOT BUILD_CPU_ONLY) target_link_libraries( cuvs_static PUBLIC rmm::rmm raft::raft ${CUVS_CTK_MATH_DEPENDENCIES} - PRIVATE nvidia::cutlass::cutlass $ cuvs-cagra-search + PRIVATE nvidia::cutlass::cutlass $ ) endif() @@ -707,7 +707,7 @@ include(GNUInstallDirs) include(CPack) install( - TARGETS cuvs cuvs_static cuvs-cagra-search + TARGETS cuvs cuvs_static DESTINATION ${lib_dir} COMPONENT cuvs EXPORT cuvs-exports