From 7c7424fb7adeba125bcc21580881eb3e2763cba5 Mon Sep 17 00:00:00 2001 From: Beomki Yeo Date: Sun, 22 Dec 2024 03:53:57 -0800 Subject: [PATCH] Fix the description of options properly --- 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 8b9675cf1..bc1186c16 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 OFF CACHE BOOL "Install CUB as part of traccc." ) +set ( CUB_ENABLE_INSTALL_RULES OFF CACHE BOOL "Do not 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 OFF CACHE BOOL "Enable CUB" ) +set ( CCCL_ENABLE_CUB OFF CACHE BOOL "Disable 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" )