| 216 | } |
| 217 | |
| 218 | std::string cmLinkLineComputer::ComputeLinkLibraries( |
| 219 | cmComputeLinkInformation& cli, std::string const& stdLibString) |
| 220 | { |
| 221 | std::string linkLibraries; |
| 222 | std::vector<BT<std::string>> linkLibrariesList; |
| 223 | this->ComputeLinkLibraries(cli, stdLibString, linkLibrariesList); |
| 224 | cli.AppendValues(linkLibraries, linkLibrariesList); |
| 225 | return linkLibraries; |
| 226 | } |
| 227 | |
| 228 | void cmLinkLineComputer::ComputeLinkLibraries( |
| 229 | cmComputeLinkInformation& cli, std::string const& stdLibString, |
no test coverage detected