| 73 | } |
| 74 | |
| 75 | void cmScriptGenerator::GenerateScript(std::ostream& os) |
| 76 | { |
| 77 | // Track indentation. |
| 78 | Indent indent; |
| 79 | |
| 80 | // Generate the script possibly with per-configuration code. |
| 81 | this->GenerateScriptConfigs(os, indent); |
| 82 | } |
| 83 | |
| 84 | void cmScriptGenerator::GenerateScriptConfigs(std::ostream& os, Indent indent) |
| 85 | { |
no test coverage detected