| 1225 | } |
| 1226 | |
| 1227 | void cmGlobalGenerator::FillExtensionToLanguageMap(std::string const& l, |
| 1228 | cmMakefile* mf) |
| 1229 | { |
| 1230 | std::string extensionsVar = cmStrCat("CMAKE_", l, "_SOURCE_FILE_EXTENSIONS"); |
| 1231 | std::string const& exts = mf->GetSafeDefinition(extensionsVar); |
| 1232 | cmList extensionList{ exts }; |
| 1233 | for (std::string const& i : extensionList) { |
| 1234 | this->ExtensionToLanguage[i] = l; |
| 1235 | } |
| 1236 | } |
| 1237 | |
| 1238 | cmValue cmGlobalGenerator::GetGlobalSetting(std::string const& name) const |
| 1239 | { |
no test coverage detected