summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorRobert Maynard <rmaynard@nvidia.com>2024-02-08 17:39:27 (GMT)
committerBrad King <brad.king@kitware.com>2024-02-08 17:57:13 (GMT)
commit4a3cafec4ff195ec86ac60d693ec502b3fca58f2 (patch)
tree9cca54d5936e01b1ecd1ab1977d4124843b2afa5 /Modules
parent5e984bb35232116a54de7db39788cb162ca7c263 (diff)
downloadCMake-4a3cafec4ff195ec86ac60d693ec502b3fca58f2.zip
CMake-4a3cafec4ff195ec86ac60d693ec502b3fca58f2.tar.gz
CMake-4a3cafec4ff195ec86ac60d693ec502b3fca58f2.tar.bz2
FindCUDAToolkit: Fix cudart dependencies
Fixes: #25665
Diffstat (limited to 'Modules')
-rw-r--r--Modules/FindCUDAToolkit.cmake13
1 files changed, 5 insertions, 8 deletions
diff --git a/Modules/FindCUDAToolkit.cmake b/Modules/FindCUDAToolkit.cmake
index 469a7ad..6b8b08e 100644
--- a/Modules/FindCUDAToolkit.cmake
+++ b/Modules/FindCUDAToolkit.cmake
@@ -1136,18 +1136,12 @@ if(CUDAToolkit_FOUND)
_CUDAToolkit_find_and_add_import_lib(cuda_driver ALT cuda)
- _CUDAToolkit_find_and_add_import_lib(cudart)
- _CUDAToolkit_find_and_add_import_lib(cudart_static)
- # setup dependencies that are required for cudart_static when building
+ # setup dependencies that are required for cudart/cudart_static when building
# on linux. These are generally only required when using the CUDA toolkit
# when CUDA language is disabled
- if(NOT TARGET CUDA::cudart_static_deps
- AND TARGET CUDA::cudart_static)
-
+ if(NOT TARGET CUDA::cudart_static_deps)
add_library(CUDA::cudart_static_deps IMPORTED INTERFACE)
- target_link_libraries(CUDA::cudart_static INTERFACE CUDA::cudart_static_deps)
-
if(UNIX AND (CMAKE_C_COMPILER OR CMAKE_CXX_COMPILER))
find_package(Threads REQUIRED)
target_link_libraries(CUDA::cudart_static_deps INTERFACE Threads::Threads ${CMAKE_DL_LIBS})
@@ -1165,6 +1159,9 @@ if(CUDAToolkit_FOUND)
endif()
endif()
+ _CUDAToolkit_find_and_add_import_lib(cudart DEPS cudart_static_deps)
+ _CUDAToolkit_find_and_add_import_lib(cudart_static DEPS cudart_static_deps)
+
if(CUDAToolkit_VERSION VERSION_GREATER_EQUAL 12.0.0)
_CUDAToolkit_find_and_add_import_lib(nvJitLink)
_CUDAToolkit_find_and_add_import_lib(nvJitLink_static DEPS cudart_static_deps)