| 5489 | } |
| 5490 | |
| 5491 | bool 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 | |
| 5505 | bool cmGlobalXCodeGenerator::UseEffectivePlatformName(cmMakefile* mf) const |
| 5506 | { |
nothing calls this directly
no test coverage detected