MCPcopy Create free account
hub / github.com/Kitware/CMake / generateListOptions

Function generateListOptions

Source/cmQtAutoGenInitializer.cxx:308–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

306}
307
308cmQtAutoGen::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

Callers 1

SetupWriteRccInfoMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…