| 141 | } |
| 142 | |
| 143 | std::vector<std::unique_ptr<cmCompiledGeneratorExpression>> |
| 144 | cmFileSet::CompileDirectoryEntries() const |
| 145 | { |
| 146 | std::vector<std::unique_ptr<cmCompiledGeneratorExpression>> result; |
| 147 | |
| 148 | for (auto const& entry : this->DirectoryEntries) { |
| 149 | for (auto const& ex : cmList{ entry.Value }) { |
| 150 | cmGeneratorExpression ge(*this->GetMakefile()->GetCMakeInstance(), |
| 151 | entry.Backtrace); |
| 152 | auto cge = ge.Parse(ex); |
| 153 | result.push_back(std::move(cge)); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | return result; |
| 158 | } |
| 159 | |
| 160 | std::vector<std::string> cmFileSet::EvaluateDirectoryEntries( |
| 161 | std::vector<std::unique_ptr<cmCompiledGeneratorExpression>> const& cges, |
no test coverage detected