| 79 | } |
| 80 | |
| 81 | void cmInstallFilesGenerator::AddFilesInstallRule( |
| 82 | std::ostream& os, std::string const& config, Indent indent, |
| 83 | std::vector<std::string> const& files) |
| 84 | { |
| 85 | // Write code to install the files. |
| 86 | char const* no_dir_permissions = nullptr; |
| 87 | this->AddInstallRule( |
| 88 | os, this->GetDestination(config), |
| 89 | (this->Programs ? cmInstallType_PROGRAMS : cmInstallType_FILES), files, |
| 90 | this->Optional, this->FilePermissions.c_str(), no_dir_permissions, |
| 91 | this->GetRename(config).c_str(), nullptr, indent); |
| 92 | } |
| 93 | |
| 94 | void cmInstallFilesGenerator::GenerateScriptActions(std::ostream& os, |
| 95 | Indent indent) |
no test coverage detected