| 515 | }; |
| 516 | |
| 517 | void cmGlobalXCodeGenerator::EnableLanguage( |
| 518 | std::vector<std::string> const& lang, cmMakefile* mf, bool optional) |
| 519 | { |
| 520 | mf->AddDefinition("XCODE", "1"); |
| 521 | mf->AddDefinition("XCODE_VERSION", this->VersionString); |
| 522 | mf->InitCMAKE_CONFIGURATION_TYPES("Debug;Release;MinSizeRel;RelWithDebInfo"); |
| 523 | mf->AddDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV", "1"); |
| 524 | this->cmGlobalGenerator::EnableLanguage(lang, mf, optional); |
| 525 | this->ComputeArchitectures(mf); |
| 526 | } |
| 527 | |
| 528 | bool cmGlobalXCodeGenerator::Open(std::string const& bindir, |
| 529 | std::string const& projectName, bool dryRun) |
nothing calls this directly
no test coverage detected