| 5287 | } |
| 5288 | |
| 5289 | std::vector<std::string> cmLocalGenerator::ExpandCustomCommandOutputPaths( |
| 5290 | cmCompiledGeneratorExpression const& cge, std::string const& config) |
| 5291 | { |
| 5292 | cmList paths{ cge.Evaluate(this, config) }; |
| 5293 | for (std::string& p : paths) { |
| 5294 | p = cmSystemTools::CollapseFullPath(p, this->GetCurrentBinaryDirectory()); |
| 5295 | } |
| 5296 | return std::move(paths.data()); |
| 5297 | } |
| 5298 | |
| 5299 | std::vector<std::string> cmLocalGenerator::ExpandCustomCommandOutputGenex( |
| 5300 | std::string const& o, cmListFileBacktrace const& bt) |
no test coverage detected