| 124 | } |
| 125 | |
| 126 | std::vector<std::unique_ptr<cmCompiledGeneratorExpression>> |
| 127 | cmFileSet::CompileFileEntries() const |
| 128 | { |
| 129 | std::vector<std::unique_ptr<cmCompiledGeneratorExpression>> result; |
| 130 | |
| 131 | for (auto const& entry : this->FileEntries) { |
| 132 | for (auto const& ex : cmList{ entry.Value }) { |
| 133 | cmGeneratorExpression ge(*this->GetMakefile()->GetCMakeInstance(), |
| 134 | entry.Backtrace); |
| 135 | auto cge = ge.Parse(ex); |
| 136 | result.push_back(std::move(cge)); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | return result; |
| 141 | } |
| 142 | |
| 143 | std::vector<std::unique_ptr<cmCompiledGeneratorExpression>> |
| 144 | cmFileSet::CompileDirectoryEntries() const |
no test coverage detected