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

Method FindImportedTarget

Source/cmMakefile.cxx:1795–1802  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1793}
1794
1795cmTarget* cmMakefile::FindImportedTarget(std::string const& name) const
1796{
1797 auto const i = this->ImportedTargets.find(name);
1798 if (i != this->ImportedTargets.end()) {
1799 return i->second;
1800 }
1801 return nullptr;
1802}
1803
1804std::vector<cmTarget*> cmMakefile::GetImportedTargets() const
1805{

Callers 2

HandlePackageModeMethod · 0.80
AppendLinkDepsMethod · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected