From 4d7206339a015c7836cb9ab1713c229129545972 Mon Sep 17 00:00:00 2001 From: Beomki Yeo Date: Sat, 21 Dec 2024 12:45:52 -0800 Subject: [PATCH] Disable CUB build in CCCL --- extern/cccl/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extern/cccl/CMakeLists.txt b/extern/cccl/CMakeLists.txt index c81bce97c..8b9675cf1 100644 --- a/extern/cccl/CMakeLists.txt +++ b/extern/cccl/CMakeLists.txt @@ -24,10 +24,10 @@ FetchContent_Declare( CCCL ${TRACCC_CCCL_SOURCE} ) # can't hurt. set ( CCCL_ENABLE_INSTALL_RULES ON CACHE BOOL "Install CCCL as part of traccc." ) set ( THRUST_ENABLE_INSTALL_RULES ON CACHE BOOL "Install Thrust as part of traccc." ) -set ( CUB_ENABLE_INSTALL_RULES ON CACHE BOOL "Install CUB as part of traccc." ) +set ( CUB_ENABLE_INSTALL_RULES OFF CACHE BOOL "Install CUB as part of traccc." ) set ( libcudacxx_ENABLE_INSTALL_RULES ON CACHE BOOL "Install libcudacxx as part of traccc." ) set ( CCCL_ENABLE_LIBCUDACXX OFF CACHE BOOL "Disable libcudacxx" ) -set ( CCCL_ENABLE_CUB ON CACHE BOOL "Enable CUB" ) +set ( CCCL_ENABLE_CUB OFF CACHE BOOL "Enable CUB" ) set ( CCCL_ENABLE_THRUST ON CACHE BOOL "Enable Thrust" ) set ( CCCL_ENABLE_TESTING OFF CACHE BOOL "Disable CCCL tests" ) set ( CCCL_ENABLE_EXAMPLES OFF CACHE BOOL "Disable CCCL examples" )