From ed81462ed66e699d01276251281f9ae365cb0e64 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Mon, 16 May 2022 19:03:53 -0400 Subject: [PATCH] Don't install component dependency files in raft-header only mode (#655) Corrects the issues we are seeing in CI with failed `faiss:faiss` dependency Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: https://github.com/rapidsai/raft/pull/655 --- cpp/cmake/modules/raft_export.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cpp/cmake/modules/raft_export.cmake b/cpp/cmake/modules/raft_export.cmake index b9a8bc6170..c7c81886e2 100644 --- a/cpp/cmake/modules/raft_export.cmake +++ b/cpp/cmake/modules/raft_export.cmake @@ -210,10 +210,6 @@ function(raft_export type project_name) file(MAKE_DIRECTORY "${scratch_dir}") install(DIRECTORY "${scratch_dir}" DESTINATION "${install_location}" COMPONENT raft_${comp}) - if(EXISTS "${scratch_dir}/raft-${comp}-dependencies.cmake") - install(FILES "${scratch_dir}/raft-${comp}-dependencies.cmake" DESTINATION "${install_location}" - COMPONENT raft) - endif() endforeach() else()