| 103 | } |
| 104 | |
| 105 | void cmInstallDirectoryGenerator::AddDirectoryInstallRule( |
| 106 | std::ostream& os, std::string const& config, Indent indent, |
| 107 | std::vector<std::string> const& dirs) |
| 108 | { |
| 109 | // Write code to install the directories. |
| 110 | char const* no_rename = nullptr; |
| 111 | this->AddInstallRule(os, this->GetDestination(config), |
| 112 | cmInstallType_DIRECTORY, dirs, this->Optional, |
| 113 | this->FilePermissions.c_str(), |
| 114 | this->DirPermissions.c_str(), no_rename, |
| 115 | this->LiteralArguments.c_str(), indent); |
| 116 | } |
| 117 | |
| 118 | std::string cmInstallDirectoryGenerator::GetDestination( |
| 119 | std::string const& config) const |
no test coverage detected