| 65 | } |
| 66 | |
| 67 | std::vector<std::string> cmInstallFilesGenerator::GetFiles( |
| 68 | std::string const& config) const |
| 69 | { |
| 70 | if (this->ActionsPerConfig) { |
| 71 | cmList files; |
| 72 | for (std::string const& f : this->Files) { |
| 73 | files.append( |
| 74 | cmGeneratorExpression::Evaluate(f, this->LocalGenerator, config)); |
| 75 | } |
| 76 | return std::move(files.data()); |
| 77 | } |
| 78 | return this->Files; |
| 79 | } |
| 80 | |
| 81 | void cmInstallFilesGenerator::AddFilesInstallRule( |
| 82 | std::ostream& os, std::string const& config, Indent indent, |