| 5521 | } |
| 5522 | |
| 5523 | void cmGlobalXCodeGenerator::ComputeTargetObjectDirectory( |
| 5524 | cmGeneratorTarget* gt) const |
| 5525 | { |
| 5526 | auto objectDirArch = GetTargetObjectDirArch(*gt, this->ObjectDirArch); |
| 5527 | gt->ObjectDirectory = |
| 5528 | cmStrCat(this->GetTargetTempDir(gt, this->GetCMakeCFGIntDir()), |
| 5529 | "/$(OBJECT_FILE_DIR_normal:base)/", objectDirArch, '/'); |
| 5530 | } |
| 5531 | |
| 5532 | std::string cmGlobalXCodeGenerator::GetDeploymentPlatform(cmMakefile const* mf) |
| 5533 | { |
nothing calls this directly
no test coverage detected