| 2142 | } |
| 2143 | |
| 2144 | void cmVS7GeneratorOptions::OutputFlag(std::ostream& fout, int indent, |
| 2145 | std::string const& flag, |
| 2146 | std::string const& content) |
| 2147 | { |
| 2148 | fout.fill('\t'); |
| 2149 | fout.width(indent); |
| 2150 | // write an empty string to get the fill level indent to print |
| 2151 | fout << "" << flag << "=\"" |
| 2152 | << cmLocalVisualStudio7GeneratorEscapeForXML(content) << "\"\n"; |
| 2153 | } |
| 2154 | |
| 2155 | // This class is used to parse an existing vs 7 project |
| 2156 | // and extract the GUID |
no test coverage detected