| 3563 | } |
| 3564 | |
| 3565 | cmXCodeObject* cmGlobalXCodeGenerator::FindXCodeTarget( |
| 3566 | cmGeneratorTarget const* t) |
| 3567 | { |
| 3568 | if (!t) { |
| 3569 | return nullptr; |
| 3570 | } |
| 3571 | |
| 3572 | auto const i = this->XCodeObjectMap.find(t); |
| 3573 | if (i == this->XCodeObjectMap.end()) { |
| 3574 | return nullptr; |
| 3575 | } |
| 3576 | return i->second; |
| 3577 | } |
| 3578 | |
| 3579 | std::string cmGlobalXCodeGenerator::GetObjectId(cmXCodeObject::PBXType ptype, |
| 3580 | cm::string_view key) |
no test coverage detected