| 91 | } |
| 92 | |
| 93 | void cmScriptGenerator::GenerateScriptActions(std::ostream& os, Indent indent) |
| 94 | { |
| 95 | if (this->ActionsPerConfig) { |
| 96 | // This is reached for single-configuration build generators in a |
| 97 | // per-config script generator. |
| 98 | this->GenerateScriptForConfig(os, this->ConfigurationName, indent); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | void cmScriptGenerator::GenerateScriptForConfig(std::ostream& /*unused*/, |
| 103 | std::string const& /*unused*/, |
no test coverage detected