| 910 | } |
| 911 | |
| 912 | BTs<std::string> const* cmGeneratorTarget::GetLanguageStandardProperty( |
| 913 | std::string const& lang, std::string const& config) const |
| 914 | { |
| 915 | std::string key = cmStrCat(cmSystemTools::UpperCase(config), '-', lang); |
| 916 | auto langStandardIter = this->LanguageStandardMap.find(key); |
| 917 | if (langStandardIter != this->LanguageStandardMap.end()) { |
| 918 | return &langStandardIter->second; |
| 919 | } |
| 920 | |
| 921 | return this->Target->GetLanguageStandardProperty( |
| 922 | cmStrCat(lang, "_STANDARD")); |
| 923 | } |
| 924 | |
| 925 | cmValue cmGeneratorTarget::GetLanguageStandard(std::string const& lang, |
| 926 | std::string const& config) const |
no test coverage detected