| 4562 | } |
| 4563 | |
| 4564 | void cmLocalGenerator::FillCustomInstallObjectLocations( |
| 4565 | cmSourceFile const& source, std::string const& config, |
| 4566 | char const* custom_ext, |
| 4567 | std::map<std::string, cmObjectLocation>& mapping) const |
| 4568 | { |
| 4569 | auto installLoc = |
| 4570 | this->GetCustomInstallObjectFileName(source, config, custom_ext); |
| 4571 | if (!installLoc.empty()) { |
| 4572 | mapping[config] = installLoc; |
| 4573 | } |
| 4574 | } |
| 4575 | |
| 4576 | std::string cmLocalGenerator::GetObjectFileNameWithoutTarget( |
| 4577 | cmSourceFile const& source, std::string const& dir_max, |
no test coverage detected