| 1500 | } |
| 1501 | |
| 1502 | void cmGlobalFastbuildGenerator::WriteVSBuildCommands() |
| 1503 | { |
| 1504 | std::string const ideArgs = this->GetIDEBuildArgs(); |
| 1505 | WriteVariable( |
| 1506 | "ProjectBuildCommand", |
| 1507 | Quote(cmStrCat(FASTBUILD_IDE_VS_COMMAND_PREFIX, this->FastbuildCommand, |
| 1508 | ideArgs, " ^$(ProjectName)")), |
| 1509 | 1); |
| 1510 | WriteVariable( |
| 1511 | "ProjectRebuildCommand", |
| 1512 | Quote(cmStrCat(FASTBUILD_IDE_VS_COMMAND_PREFIX, this->FastbuildCommand, |
| 1513 | ideArgs, "-clean ^$(ProjectName)")), |
| 1514 | 1); |
| 1515 | WriteVariable("ProjectCleanCommand", |
| 1516 | Quote(cmStrCat(FASTBUILD_IDE_VS_COMMAND_PREFIX, |
| 1517 | this->FastbuildCommand, ideArgs, " clean")), |
| 1518 | 1); |
| 1519 | } |
| 1520 | void cmGlobalFastbuildGenerator::WriteXCodeBuildCommands() |
| 1521 | { |
| 1522 | std::string const ideArgs = this->GetIDEBuildArgs(); |
nothing calls this directly
no test coverage detected