| 201 | } |
| 202 | |
| 203 | std::string cmLinkLineComputer::ComputeFrameworkPath( |
| 204 | cmComputeLinkInformation& cli, cmValue fwSearchFlag) |
| 205 | { |
| 206 | if (!fwSearchFlag) { |
| 207 | return std::string{}; |
| 208 | } |
| 209 | |
| 210 | std::string frameworkPath; |
| 211 | for (auto const& fd : cli.GetFrameworkPaths()) { |
| 212 | frameworkPath += |
| 213 | cmStrCat(fwSearchFlag, this->ConvertToOutputFormat(fd), ' '); |
| 214 | } |
| 215 | return frameworkPath; |
| 216 | } |
| 217 | |
| 218 | std::string cmLinkLineComputer::ComputeLinkLibraries( |
| 219 | cmComputeLinkInformation& cli, std::string const& stdLibString) |
no test coverage detected