| 92 | } |
| 93 | |
| 94 | void cmInstallFilesGenerator::GenerateScriptActions(std::ostream& os, |
| 95 | Indent indent) |
| 96 | { |
| 97 | if (this->ActionsPerConfig) { |
| 98 | this->cmInstallGenerator::GenerateScriptActions(os, indent); |
| 99 | } else { |
| 100 | this->AddFilesInstallRule(os, "", indent, this->Files); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | void cmInstallFilesGenerator::GenerateScriptForConfig( |
| 105 | std::ostream& os, std::string const& config, Indent indent) |
nothing calls this directly
no test coverage detected