| 5567 | } |
| 5568 | |
| 5569 | void cmVisualStudio10TargetGenerator::WriteMissingFiles(Elem& e1) |
| 5570 | { |
| 5571 | std::string const& v = this->GlobalGenerator->GetSystemVersion(); |
| 5572 | if (this->GlobalGenerator->TargetsWindowsPhone()) { |
| 5573 | if (v == "8.0"_s) { |
| 5574 | this->WriteMissingFilesWP80(e1); |
| 5575 | } else if (v == "8.1"_s) { |
| 5576 | this->WriteMissingFilesWP81(e1); |
| 5577 | } |
| 5578 | } else if (this->GlobalGenerator->TargetsWindowsStore()) { |
| 5579 | if (v == "8.0"_s) { |
| 5580 | this->WriteMissingFilesWS80(e1); |
| 5581 | } else if (v == "8.1"_s) { |
| 5582 | this->WriteMissingFilesWS81(e1); |
| 5583 | } else if (cmHasLiteralPrefix(v, "10.0")) { |
| 5584 | this->WriteMissingFilesWS10_0(e1); |
| 5585 | } |
| 5586 | } |
| 5587 | } |
| 5588 | |
| 5589 | void cmVisualStudio10TargetGenerator::WriteMissingFilesWP80(Elem& e1) |
| 5590 | { |
no test coverage detected