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

Method GetNamedRuntimeDependencySet

Source/cmGlobalGenerator.cxx:4037–4049  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4035}
4036
4037cmInstallRuntimeDependencySet* cmGlobalGenerator::GetNamedRuntimeDependencySet(
4038 std::string const& name)
4039{
4040 auto it = this->RuntimeDependencySetsByName.find(name);
4041 if (it == this->RuntimeDependencySetsByName.end()) {
4042 auto set = cm::make_unique<cmInstallRuntimeDependencySet>(name);
4043 it =
4044 this->RuntimeDependencySetsByName.insert(std::make_pair(name, set.get()))
4045 .first;
4046 this->RuntimeDependencySets.push_back(std::move(set));
4047 }
4048 return it->second;
4049}
4050
4051cmGlobalGenerator::StripCommandStyle cmGlobalGenerator::GetStripCommandStyle(
4052 std::string const& strip)

Callers 3

HandleTargetsModeFunction · 0.80

Calls 6

moveFunction · 0.85
push_backMethod · 0.80
findMethod · 0.45
endMethod · 0.45
insertMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected