| 1518 | 1); |
| 1519 | } |
| 1520 | void cmGlobalFastbuildGenerator::WriteXCodeBuildCommands() |
| 1521 | { |
| 1522 | std::string const ideArgs = this->GetIDEBuildArgs(); |
| 1523 | WriteVariable("XCodeBuildToolPath", Quote(this->FastbuildCommand), 1); |
| 1524 | WriteVariable("XCodeBuildToolArgs", |
| 1525 | Quote(cmStrCat(ideArgs, "^$(FASTBUILD_TARGET)")), 1); |
| 1526 | WriteVariable("XCodeBuildWorkingDir", |
| 1527 | Quote(this->CMakeInstance->GetHomeOutputDirectory()), 1); |
| 1528 | } |
| 1529 | |
| 1530 | void cmGlobalFastbuildGenerator::WriteIDEProjectCommon( |
| 1531 | IDEProjectCommon const& project) |
nothing calls this directly
no test coverage detected