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

Function WriteSlnxSolutionConfigurationPlatforms

Source/cmVSSolution.cxx:326–335  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324}
325
326void WriteSlnxSolutionConfigurationPlatforms(cmXMLElement& xmlParent,
327 Solution const& solution)
328{
329 cmXMLElement xmlConfigurations(xmlParent, "Configurations");
330 for (std::string const& c : solution.Configs) {
331 cmXMLElement(xmlConfigurations, "BuildType").Attribute("Name", c);
332 }
333 cmXMLElement(xmlConfigurations, "Platform")
334 .Attribute("Name", solution.Platform);
335};
336
337void WriteSlnxProject(cmXMLElement& xmlParent, Solution const& solution,
338 Solution::Project const& project)

Callers 1

WriteSlnxFunction · 0.85

Calls 2

AttributeMethod · 0.80
cmXMLElementClass · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…