| 358 | } |
| 359 | |
| 360 | void cmFastbuildNormalTargetGenerator::ApplyLinkRuleLauncher( |
| 361 | std::string& command) |
| 362 | { |
| 363 | std::string const val = this->GetLocalGenerator()->GetRuleLauncher( |
| 364 | this->GetGeneratorTarget(), "RULE_LAUNCH_LINK", Config); |
| 365 | if (cmNonempty(val)) { |
| 366 | LogMessage("RULE_LAUNCH_LINK: " + val); |
| 367 | command = cmStrCat(val, ' ', command); |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | void cmFastbuildNormalTargetGenerator::ApplyLWYUToLinkerCommand( |
| 372 | FastbuildLinkerNode& linkerNode) |
nothing calls this directly
no test coverage detected