| 5503 | } |
| 5504 | |
| 5505 | bool cmGlobalXCodeGenerator::UseEffectivePlatformName(cmMakefile* mf) const |
| 5506 | { |
| 5507 | cmValue epnValue = this->GetCMakeInstance()->GetState()->GetGlobalProperty( |
| 5508 | "XCODE_EMIT_EFFECTIVE_PLATFORM_NAME"); |
| 5509 | |
| 5510 | if (!epnValue) { |
| 5511 | return mf->PlatformIsAppleEmbedded(); |
| 5512 | } |
| 5513 | |
| 5514 | return epnValue.IsOn(); |
| 5515 | } |
| 5516 | |
| 5517 | bool cmGlobalXCodeGenerator::ShouldStripResourcePath(cmMakefile*) const |
| 5518 | { |
no test coverage detected