| 4035 | } |
| 4036 | |
| 4037 | cmInstallRuntimeDependencySet* 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 | |
| 4051 | cmGlobalGenerator::StripCommandStyle cmGlobalGenerator::GetStripCommandStyle( |
| 4052 | std::string const& strip) |
no test coverage detected