MCPcopy Create free account
hub / github.com/Kitware/CMake / WriteVSBuildCommands

Method WriteVSBuildCommands

Source/cmGlobalFastbuildGenerator.cxx:1502–1519  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1500}
1501
1502void 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}
1520void cmGlobalFastbuildGenerator::WriteXCodeBuildCommands()
1521{
1522 std::string const ideArgs = this->GetIDEBuildArgs();

Callers

nothing calls this directly

Calls 2

GetIDEBuildArgsMethod · 0.95
cmStrCatFunction · 0.70

Tested by

no test coverage detected