| 3966 | } |
| 3967 | |
| 3968 | void cmLocalGenerator::AppendFeatureOptions(std::string& flags, |
| 3969 | std::string const& lang, |
| 3970 | char const* feature) |
| 3971 | { |
| 3972 | cmValue optionList = this->Makefile->GetDefinition( |
| 3973 | cmStrCat("CMAKE_", lang, "_COMPILE_OPTIONS_", feature)); |
| 3974 | if (optionList) { |
| 3975 | cmList options{ *optionList }; |
| 3976 | for (std::string const& o : options) { |
| 3977 | this->AppendFlagEscape(flags, o); |
| 3978 | } |
| 3979 | } |
| 3980 | } |
| 3981 | |
| 3982 | cmValue cmLocalGenerator::GetFeature(std::string const& feature, |
| 3983 | std::string const& config) |
no test coverage detected