diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2020-03-25 12:29:09 (GMT) |
---|---|---|
committer | Robert Maynard <robert.maynard@kitware.com> | 2020-03-27 16:58:01 (GMT) |
commit | 79b6e928c3db39cd390ecd6f971f0179a88d8bcf (patch) | |
tree | 45a3fbc44f3f63e02b55d8c69642d5d831593177 /Modules | |
parent | f6704357159366fc404491e02f1ea6cee87f0989 (diff) | |
download | CMake-79b6e928c3db39cd390ecd6f971f0179a88d8bcf.zip CMake-79b6e928c3db39cd390ecd6f971f0179a88d8bcf.tar.gz CMake-79b6e928c3db39cd390ecd6f971f0179a88d8bcf.tar.bz2 |
CUDA: Support compiler specific FindBinUtils overrides
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CMakeDetermineCUDACompiler.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/CMakeDetermineCUDACompiler.cmake b/Modules/CMakeDetermineCUDACompiler.cmake index 62ea686..95c3cc9 100644 --- a/Modules/CMakeDetermineCUDACompiler.cmake +++ b/Modules/CMakeDetermineCUDACompiler.cmake @@ -74,6 +74,7 @@ endif() set(_CMAKE_PROCESSING_LANGUAGE "CUDA") include(CMakeFindBinUtils) +include(Compiler/${CMAKE_CUDA_COMPILER_ID}-FindBinUtils OPTIONAL) unset(_CMAKE_PROCESSING_LANGUAGE) if(MSVC_CUDA_ARCHITECTURE_ID) |