| 1364 | } |
| 1365 | |
| 1366 | void cmVisualStudio10TargetGenerator::WriteTargetSpecificReferences(Elem& e0) |
| 1367 | { |
| 1368 | if (this->MSTools) { |
| 1369 | if (this->GlobalGenerator->TargetsWindowsPhone() && |
| 1370 | this->GlobalGenerator->GetSystemVersion() == "8.0"_s) { |
| 1371 | Elem(e0, "Import") |
| 1372 | .Attribute("Project", |
| 1373 | "$(MSBuildExtensionsPath)\\Microsoft\\WindowsPhone\\v" |
| 1374 | "$(TargetPlatformVersion)\\Microsoft.Cpp.WindowsPhone." |
| 1375 | "$(TargetPlatformVersion).targets"); |
| 1376 | } |
| 1377 | } |
| 1378 | } |
| 1379 | |
| 1380 | void cmVisualStudio10TargetGenerator::WriteTargetsFileReferences(Elem& e1) |
| 1381 | { |
no test coverage detected