| 563 | } |
| 564 | |
| 565 | void cmInstallTargetGenerator::PostReplacementTweaks(std::ostream& os, |
| 566 | Indent indent, |
| 567 | std::string const& config, |
| 568 | std::string const& file) |
| 569 | { |
| 570 | this->AddInstallNamePatchRule(os, indent, config, file); |
| 571 | this->AddChrpathPatchRule(os, indent, config, file); |
| 572 | this->AddUniversalInstallRule(os, indent, file); |
| 573 | this->AddRanlibRule(os, indent, file); |
| 574 | this->AddStripRule(os, indent, file); |
| 575 | } |
| 576 | |
| 577 | void cmInstallTargetGenerator::AddInstallNamePatchRule( |
| 578 | std::ostream& os, Indent indent, std::string const& config, |
no test coverage detected