| 1491 | } |
| 1492 | |
| 1493 | std::string cmGlobalFastbuildGenerator::GetIDEBuildArgs() const |
| 1494 | { |
| 1495 | cmValue const ideArgs = this->GetGlobalSetting(FASTBUILD_IDE_ARGS); |
| 1496 | if (ideArgs) { |
| 1497 | return cmStrCat(' ', ideArgs, ' '); |
| 1498 | } |
| 1499 | return FASTBUILD_DEFAULT_IDE_BUILD_ARGS; |
| 1500 | } |
| 1501 | |
| 1502 | void cmGlobalFastbuildGenerator::WriteVSBuildCommands() |
| 1503 | { |
no test coverage detected