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

Function WriteSlnSolutionConfigurationPlatforms

Source/cmVSSolution.cxx:202–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200}
201
202void WriteSlnSolutionConfigurationPlatforms(std::ostream& sln,
203 Solution const& solution)
204{
205 sln << "\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\n";
206 for (std::string const& config : solution.Configs) {
207 sln << "\t\t" << config << '|' << solution.Platform << " = " << config
208 << '|' << solution.Platform << '\n';
209 }
210 sln << "\tEndGlobalSection\n";
211}
212
213void WriteSlnProjectConfigurationPlatforms(std::ostream& sln,
214 Solution const& solution,

Callers 1

WriteSlnFunction · 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…