| 727 | } |
| 728 | |
| 729 | void cmGlobalXCodeGenerator::SetGenerationRoot(cmLocalGenerator* root) |
| 730 | { |
| 731 | this->CurrentProject = root->GetProjectName(); |
| 732 | this->SetCurrentLocalGenerator(root); |
| 733 | this->CurrentRootGenerator = root; |
| 734 | this->CurrentXCodeHackMakefile = |
| 735 | cmStrCat(root->GetCurrentBinaryDirectory(), "/CMakeScripts"); |
| 736 | cmSystemTools::MakeDirectory(this->CurrentXCodeHackMakefile); |
| 737 | this->CurrentXCodeHackMakefile += "/XCODE_DEPEND_HELPER.make"; |
| 738 | } |
| 739 | |
| 740 | std::string cmGlobalXCodeGenerator::PostBuildMakeTarget( |
| 741 | std::string const& tName, std::string const& configName) |
no test coverage detected