summaryrefslogtreecommitdiffstats
path: root/Source/cmNinjaNormalTargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-12-06 13:38:45 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-12-06 13:39:22 (GMT)
commit0780a8f57ac6a593a53fe2fe9ce22c889a77d5fb (patch)
treedc4a3e75ce0f4a1ce4f3c866748a124ba01f6553 /Source/cmNinjaNormalTargetGenerator.cxx
parent3542a553bf5149734c9002952795026ffbd06308 (diff)
parent7b7421346194896109a304ff088630f37ab2bd9e (diff)
downloadCMake-0780a8f57ac6a593a53fe2fe9ce22c889a77d5fb.zip
CMake-0780a8f57ac6a593a53fe2fe9ce22c889a77d5fb.tar.gz
CMake-0780a8f57ac6a593a53fe2fe9ce22c889a77d5fb.tar.bz2
Merge topic 'cuda-external'
7b74213461 CUDA: Fix crash on linking to a CUDA target without CUDA enabled Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2704
Diffstat (limited to 'Source/cmNinjaNormalTargetGenerator.cxx')
-rw-r--r--Source/cmNinjaNormalTargetGenerator.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx
index 1386706..c953d20 100644
--- a/Source/cmNinjaNormalTargetGenerator.cxx
+++ b/Source/cmNinjaNormalTargetGenerator.cxx
@@ -557,6 +557,10 @@ std::vector<std::string> cmNinjaNormalTargetGenerator::ComputeLinkCmd()
void cmNinjaNormalTargetGenerator::WriteDeviceLinkStatement()
{
+ if (!this->GetGlobalGenerator()->GetLanguageEnabled("CUDA")) {
+ return;
+ }
+
cmGeneratorTarget& genTarget = *this->GetGeneratorTarget();
// determine if we need to do any device linking for this target