MCPcopy Create free account
hub / github.com/Kitware/CMake / ComputeFrameworkPath

Method ComputeFrameworkPath

Source/cmLinkLineComputer.cxx:203–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201}
202
203std::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
218std::string cmLinkLineComputer::ComputeLinkLibraries(
219 cmComputeLinkInformation& cli, std::string const& stdLibString)

Callers 1

OutputLinkLibrariesMethod · 0.80

Calls 2

ConvertToOutputFormatMethod · 0.95
cmStrCatFunction · 0.70

Tested by

no test coverage detected