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

Method HasKnownObjectFileLocation

Source/cmGlobalXCodeGenerator.cxx:5491–5503  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5489}
5490
5491bool cmGlobalXCodeGenerator::HasKnownObjectFileLocation(
5492 cmTarget const& target, std::string* reason) const
5493{
5494 auto objectDirArch = GetTargetObjectDirArch(target, this->ObjectDirArch);
5495
5496 if (objectDirArch.find('$') != std::string::npos) {
5497 if (reason != nullptr) {
5498 *reason = " under Xcode with multiple architectures";
5499 }
5500 return false;
5501 }
5502 return true;
5503}
5504
5505bool cmGlobalXCodeGenerator::UseEffectivePlatformName(cmMakefile* mf) const
5506{

Callers

nothing calls this directly

Calls 2

GetTargetObjectDirArchFunction · 0.85
findMethod · 0.45

Tested by

no test coverage detected