| 723 | } |
| 724 | |
| 725 | cmValue cmGeneratorTarget::GetFeature(std::string const& feature, |
| 726 | std::string const& config) const |
| 727 | { |
| 728 | if (!config.empty()) { |
| 729 | std::string featureConfig = |
| 730 | cmStrCat(feature, '_', cmSystemTools::UpperCase(config)); |
| 731 | if (cmValue value = this->GetProperty(featureConfig)) { |
| 732 | return value; |
| 733 | } |
| 734 | } |
| 735 | if (cmValue value = this->GetProperty(feature)) { |
| 736 | return value; |
| 737 | } |
| 738 | return this->LocalGenerator->GetFeature(feature, config); |
| 739 | } |
| 740 | |
| 741 | std::string cmGeneratorTarget::GetLinkerTypeProperty( |
| 742 | std::string const& lang, std::string const& config) const |
no test coverage detected