| 4078 | } |
| 4079 | |
| 4080 | void cmGeneratorTarget::GetTargetObjectNames( |
| 4081 | std::string const& config, std::vector<std::string>& objects) const |
| 4082 | { |
| 4083 | this->GetTargetObjectLocations( |
| 4084 | config, |
| 4085 | [&objects](cmObjectLocation const& buildLoc, cmObjectLocation const&) { |
| 4086 | objects.push_back(buildLoc.GetPath()); |
| 4087 | }); |
| 4088 | } |
| 4089 | |
| 4090 | void cmGeneratorTarget::GetTargetObjectLocations( |
| 4091 | std::string const& config, |
no test coverage detected