summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeDetermineCUDACompiler.cmake
diff options
context:
space:
mode:
authorTobias Ribizel <ribizel@kit.edu>2021-03-10 13:55:43 (GMT)
committerTobias Ribizel <ribizel@kit.edu>2021-03-15 20:34:05 (GMT)
commit55233eee424816843bb0a5c820d3d4ebbdf3da27 (patch)
treef5f0524b8a4bbb28aba7d11199b78331f941ae53 /Modules/CMakeDetermineCUDACompiler.cmake
parent336c57edd08354ecbda007491a1820b6371911b2 (diff)
downloadCMake-55233eee424816843bb0a5c820d3d4ebbdf3da27.zip
CMake-55233eee424816843bb0a5c820d3d4ebbdf3da27.tar.gz
CMake-55233eee424816843bb0a5c820d3d4ebbdf3da27.tar.bz2
CUDA: Add support for finding nvcc in CUDA_PATH
Previously, nvcc needed to be present in PATH or specified by CUDACXX. On Windows with vcpkg, the PATH is heavily modified, which lead to nvcc not being found with the Ninja generator.
Diffstat (limited to 'Modules/CMakeDetermineCUDACompiler.cmake')
-rw-r--r--Modules/CMakeDetermineCUDACompiler.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/CMakeDetermineCUDACompiler.cmake b/Modules/CMakeDetermineCUDACompiler.cmake
index 1ba537a..0f507ea 100644
--- a/Modules/CMakeDetermineCUDACompiler.cmake
+++ b/Modules/CMakeDetermineCUDACompiler.cmake
@@ -31,7 +31,9 @@ else()
set(CMAKE_CUDA_COMPILER_LIST nvcc)
endif()
+ set(_CMAKE_CUDA_COMPILER_PATHS "$ENV{CUDA_PATH}/bin")
_cmake_find_compiler(CUDA)
+ unset(_CMAKE_CUDA_COMPILER_PATHS)
else()
_cmake_find_compiler_path(CUDA)
endif()