| 2271 | } |
| 2272 | |
| 2273 | void cmLocalGenerator::AddLanguageFlagsForLinking( |
| 2274 | std::string& flags, cmGeneratorTarget const* target, std::string const& lang, |
| 2275 | std::string const& config) |
| 2276 | { |
| 2277 | this->AddLanguageFlags(flags, target, cmBuildStep::Link, lang, config); |
| 2278 | |
| 2279 | if (target->IsIPOEnabled(lang, config)) { |
| 2280 | this->AppendFeatureOptions(flags, lang, "IPO"); |
| 2281 | } |
| 2282 | } |
| 2283 | |
| 2284 | cmGeneratorTarget* cmLocalGenerator::FindGeneratorTargetToUse( |
| 2285 | std::string const& name) const |
no test coverage detected