| 98 | } |
| 99 | |
| 100 | std::string cmLinkLineComputer::ConvertToOutputForExisting( |
| 101 | std::string const& input) |
| 102 | { |
| 103 | cmOutputConverter::OutputFormat shellFormat = cmOutputConverter::SHELL; |
| 104 | if (this->ForResponse) { |
| 105 | shellFormat = cmOutputConverter::RESPONSE; |
| 106 | } else if (this->UseNinjaMulti) { |
| 107 | shellFormat = cmOutputConverter::NINJAMULTI; |
| 108 | } |
| 109 | |
| 110 | return this->OutputConverter->ConvertToOutputForExisting( |
| 111 | input, shellFormat, this->UseWatcomQuote); |
| 112 | } |
| 113 | |
| 114 | std::string cmLinkLineComputer::ComputeLinkPath( |
| 115 | cmComputeLinkInformation& cli, std::string const& libPathFlag, |