MCPcopy Create free account
hub / github.com/Kitware/CMake / WriteMissingFiles

Method WriteMissingFiles

Source/cmVisualStudio10TargetGenerator.cxx:5569–5587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5567}
5568
5569void 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
5589void cmVisualStudio10TargetGenerator::WriteMissingFilesWP80(Elem& e1)
5590{

Callers 1

WriteAllSourcesMethod · 0.95

Calls 8

WriteMissingFilesWP80Method · 0.95
WriteMissingFilesWP81Method · 0.95
WriteMissingFilesWS80Method · 0.95
WriteMissingFilesWS81Method · 0.95
cmHasLiteralPrefixFunction · 0.85
TargetsWindowsPhoneMethod · 0.80
TargetsWindowsStoreMethod · 0.80

Tested by

no test coverage detected