| 84 | cmLocalVisualStudio7Generator::~cmLocalVisualStudio7Generator() = default; |
| 85 | |
| 86 | void cmLocalVisualStudio7Generator::AddHelperCommands() |
| 87 | { |
| 88 | // Now create GUIDs for targets |
| 89 | auto const& tgts = this->GetGeneratorTargets(); |
| 90 | for (auto const& l : tgts) { |
| 91 | if (!l->IsInBuildSystem()) { |
| 92 | continue; |
| 93 | } |
| 94 | cmValue path = l->GetProperty("EXTERNAL_MSPROJECT"); |
| 95 | if (path) { |
| 96 | this->ReadAndStoreExternalGUID(l->GetName(), path->c_str()); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | this->FixGlobalTargets(); |
| 101 | } |
| 102 | |
| 103 | void cmLocalVisualStudio7Generator::Generate() |
| 104 | { |
no test coverage detected