From 04950717c14026c37d81d8d559b0d02435784d0e Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Wed, 27 Nov 2024 08:41:47 -0800 Subject: [PATCH] Adapt to rmm logger changes (#17451) This PR adapts to breaking changes in rmm in https://github.com/rapidsai/rmm/pull/1722. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Mark Harris (https://github.com/harrism) - Nghia Truong (https://github.com/ttnghia) URL: https://github.com/rapidsai/cudf/pull/17451 --- cpp/CMakeLists.txt | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index e4fa3b28383..bb844b2b704 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -926,9 +926,16 @@ add_dependencies(cudf jitify_preprocess_run) # Specify the target module library dependencies target_link_libraries( cudf - PUBLIC CCCL::CCCL rmm::rmm $ spdlog::spdlog_header_only - PRIVATE $ cuco::cuco ZLIB::ZLIB nvcomp::nvcomp - kvikio::kvikio $ nanoarrow + PUBLIC CCCL::CCCL rmm::rmm rmm::rmm_logger $ + spdlog::spdlog_header_only + PRIVATE $ + cuco::cuco + ZLIB::ZLIB + nvcomp::nvcomp + kvikio::kvikio + $ + nanoarrow + rmm::rmm_logger_impl ) # Add Conda library, and include paths if specified