summaryrefslogtreecommitdiffstats
path: root/Source/cmVisualStudio10TargetGenerator.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/cmVisualStudio10TargetGenerator.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/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r--Source/cmVisualStudio10TargetGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx
index e9a1a67..7d7defc 100644
--- a/Source/cmVisualStudio10TargetGenerator.cxx
+++ b/Source/cmVisualStudio10TargetGenerator.cxx
@@ -3319,7 +3319,8 @@ bool cmVisualStudio10TargetGenerator::ComputeLinkOptions(
std::vector<std::string> vsTargetVec;
this->AddLibraries(cli, libVec, vsTargetVec, config);
if (std::find(linkClosure->Languages.begin(), linkClosure->Languages.end(),
- "CUDA") != linkClosure->Languages.end()) {
+ "CUDA") != linkClosure->Languages.end() &&
+ this->CudaOptions[config] != nullptr) {
switch (this->CudaOptions[config]->GetCudaRuntime()) {
case cmVisualStudioGeneratorOptions::CudaRuntimeStatic:
libVec.push_back("cudadevrt.lib");