| 112 | } |
| 113 | |
| 114 | std::string cmLinkLineComputer::ComputeLinkPath( |
| 115 | cmComputeLinkInformation& cli, std::string const& libPathFlag, |
| 116 | std::string const& libPathTerminator, std::string const& stdLinkDirString) |
| 117 | { |
| 118 | std::string linkPath; |
| 119 | std::vector<BT<std::string>> linkPathList; |
| 120 | this->ComputeLinkPath(cli, libPathFlag, libPathTerminator, stdLinkDirString, |
| 121 | linkPathList); |
| 122 | cli.AppendValues(linkPath, linkPathList); |
| 123 | return linkPath; |
| 124 | } |
| 125 | |
| 126 | void cmLinkLineComputer::ComputeLinkPath( |
| 127 | cmComputeLinkInformation& cli, std::string const& libPathFlag, |
no test coverage detected