| 2443 | } |
| 2444 | |
| 2445 | cmNinjaDeps cmNinjaTargetGenerator::GetObjects(std::string const& config) const |
| 2446 | { |
| 2447 | auto const it = this->Configs.find(config); |
| 2448 | if (it != this->Configs.end()) { |
| 2449 | return it->second.Objects; |
| 2450 | } |
| 2451 | return {}; |
| 2452 | } |
| 2453 | |
| 2454 | void cmNinjaTargetGenerator::EnsureDirectoryExists( |
| 2455 | std::string const& path) const |
no test coverage detected