| 82 | } |
| 83 | |
| 84 | void cmScriptGenerator::GenerateScriptConfigs(std::ostream& os, Indent indent) |
| 85 | { |
| 86 | if (this->ActionsPerConfig) { |
| 87 | this->GenerateScriptActionsPerConfig(os, indent); |
| 88 | } else { |
| 89 | this->GenerateScriptActionsOnce(os, indent); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void cmScriptGenerator::GenerateScriptActions(std::ostream& os, Indent indent) |
| 94 | { |
no test coverage detected