| 285 | } |
| 286 | |
| 287 | bool cmGlobalXCodeGenerator::FindMakeProgram(cmMakefile* mf) |
| 288 | { |
| 289 | // The Xcode generator knows how to lookup its build tool |
| 290 | // directly instead of needing a helper module to do it, so we |
| 291 | // do not actually need to put CMAKE_MAKE_PROGRAM into the cache. |
| 292 | if (mf->GetDefinition("CMAKE_MAKE_PROGRAM").IsOff()) { |
| 293 | mf->AddDefinition("CMAKE_MAKE_PROGRAM", this->GetXcodeBuildCommand()); |
| 294 | } |
| 295 | return true; |
| 296 | } |
| 297 | |
| 298 | std::string cmGlobalXCodeGenerator::GetAppleSpecificPlatformName() |
| 299 | { |
nothing calls this directly
no test coverage detected