MCPcopy Create free account
hub / github.com/Kitware/CMake / FindXCodeTarget

Method FindXCodeTarget

Source/cmGlobalXCodeGenerator.cxx:3565–3577  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3563}
3564
3565cmXCodeObject* 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
3579std::string cmGlobalXCodeGenerator::GetObjectId(cmXCodeObject::PBXType ptype,
3580 cm::string_view key)

Callers 2

AddEmbeddedObjectsMethod · 0.95

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected