| 2130 | } |
| 2131 | |
| 2132 | std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPathSingle( |
| 2133 | std::string const& path) |
| 2134 | { |
| 2135 | std::string ret = |
| 2136 | this->ConvertToOutputFormat(path, cmOutputConverter::SHELL); |
| 2137 | cmSystemTools::ReplaceString(ret, "\"", ""); |
| 2138 | cmSystemTools::ReplaceString(ret, "&", "&"); |
| 2139 | cmSystemTools::ReplaceString(ret, "<", "<"); |
| 2140 | cmSystemTools::ReplaceString(ret, ">", ">"); |
| 2141 | return ret; |
| 2142 | } |
| 2143 | |
| 2144 | void cmVS7GeneratorOptions::OutputFlag(std::ostream& fout, int indent, |
| 2145 | std::string const& flag, |
no test coverage detected