| 200 | } |
| 201 | |
| 202 | void 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 | |
| 213 | void WriteSlnProjectConfigurationPlatforms(std::ostream& sln, |
| 214 | Solution const& solution, |
no outgoing calls
no test coverage detected
searching dependent graphs…