| 923 | } |
| 924 | |
| 925 | cmValue cmGeneratorTarget::GetLanguageStandard(std::string const& lang, |
| 926 | std::string const& config) const |
| 927 | { |
| 928 | BTs<std::string> const* languageStandard = |
| 929 | this->GetLanguageStandardProperty(lang, config); |
| 930 | |
| 931 | if (languageStandard) { |
| 932 | return cmValue(languageStandard->Value); |
| 933 | } |
| 934 | |
| 935 | return nullptr; |
| 936 | } |
| 937 | |
| 938 | cmValue cmGeneratorTarget::GetPropertyWithPairedLanguageSupport( |
| 939 | std::string const& lang, char const* suffix) const |
no test coverage detected