summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileTargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-06-09 15:20:41 (GMT)
committerBrad King <brad.king@kitware.com>2017-06-09 16:34:39 (GMT)
commit414438b2fb5a43c447273b425b59cd982818457b (patch)
tree191e35f5092f645b9a56178c2f3fcbf37be06480 /Source/cmMakefileTargetGenerator.cxx
parent591557ba450f1f24610ea0eefcb4e1d7665fae25 (diff)
downloadCMake-414438b2fb5a43c447273b425b59cd982818457b.zip
CMake-414438b2fb5a43c447273b425b59cd982818457b.tar.gz
CMake-414438b2fb5a43c447273b425b59cd982818457b.tar.bz2
CUDA: Add option to run the compiler through launcher tools
Add a `CUDA_COMPILER_LAUNCHER` target property like those added for C and CXX by commit v3.4.0-rc1~450^2 (Add options to launch the compiler through tools like ccache or distcc, 2015-06-04). Fixes: #16953
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileTargetGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx
index a4511b6..7938683 100644
--- a/Source/cmMakefileTargetGenerator.cxx
+++ b/Source/cmMakefileTargetGenerator.cxx
@@ -657,7 +657,8 @@ void cmMakefileTargetGenerator::WriteObjectBuildFile(
}
// Maybe insert a compiler launcher like ccache or distcc
- if (!compileCommands.empty() && (lang == "C" || lang == "CXX")) {
+ if (!compileCommands.empty() &&
+ (lang == "C" || lang == "CXX" || lang == "CUDA")) {
std::string const clauncher_prop = lang + "_COMPILER_LAUNCHER";
const char* clauncher =
this->GeneratorTarget->GetProperty(clauncher_prop);