VS: Fix regression in XML generation for CUDA

Refactoring in commit 3f315dc128 (cmVisualStudio10TargetGenerator: XML
refactoring, 2018-05-02) accidentally left the `<Import>` element for
the CUDA build customizations unclosed.
This commit is contained in:
Brad King
2018-05-08 10:29:22 -04:00
parent 3f315dc128
commit 0bd1d1fcc4

View File

@@ -667,7 +667,8 @@ void cmVisualStudio10TargetGenerator::Generate()
Elem(e1, "Import")
.Attribute("Project", "$(VCTargetsPath)\\BuildCustomizations\\CUDA " +
this->GlobalGenerator->GetPlatformToolsetCudaString() +
".targets");
".targets")
.EndElement();
}
if (this->GlobalGenerator->IsMasmEnabled()) {
Elem(e1, "Import")