| 2064 | } |
| 2065 | |
| 2066 | std::string cmMakefileTargetGenerator::GetLinkRule( |
| 2067 | std::string const& linkRuleVar) |
| 2068 | { |
| 2069 | std::string linkRule = this->Makefile->GetRequiredDefinition(linkRuleVar); |
| 2070 | if (this->GeneratorTarget->HasImplibGNUtoMS(this->GetConfigName())) { |
| 2071 | std::string ruleVar = |
| 2072 | cmStrCat("CMAKE_", |
| 2073 | this->GeneratorTarget->GetLinkerLanguage(this->GetConfigName()), |
| 2074 | "_GNUtoMS_RULE"); |
| 2075 | if (cmValue rule = this->Makefile->GetDefinition(ruleVar)) { |
| 2076 | linkRule += *rule; |
| 2077 | } |
| 2078 | } |
| 2079 | return linkRule; |
| 2080 | } |
| 2081 | |
| 2082 | void cmMakefileTargetGenerator::CloseFileStreams() |
| 2083 | { |
no test coverage detected