| 306 | } |
| 307 | |
| 308 | cmQtAutoGen::ConfigStrings<std::vector<std::string>> generateListOptions( |
| 309 | cmQtAutoGen::ConfigStrings<cmQtAutoGen::CompilerFeaturesHandle> const& |
| 310 | executableFeatures, |
| 311 | bool IsMultiConfig) |
| 312 | { |
| 313 | cmQtAutoGen::ConfigStrings<std::vector<std::string>> tempListOptions; |
| 314 | if (IsMultiConfig) { |
| 315 | for (auto const& executableFeature : executableFeatures.Config) { |
| 316 | tempListOptions.Config[executableFeature.first] = |
| 317 | executableFeature.second->ListOptions; |
| 318 | } |
| 319 | } else { |
| 320 | tempListOptions.Default = executableFeatures.Default->ListOptions; |
| 321 | } |
| 322 | |
| 323 | return tempListOptions; |
| 324 | } |
| 325 | |
| 326 | } // End of unnamed namespace |
| 327 |
no outgoing calls
no test coverage detected
searching dependent graphs…