| 2118 | } |
| 2119 | |
| 2120 | std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPath( |
| 2121 | std::string const& path) |
| 2122 | { |
| 2123 | std::string ret = |
| 2124 | this->ConvertToOutputFormat(path, cmOutputConverter::SHELL); |
| 2125 | cmSystemTools::ReplaceString(ret, "&", "&"); |
| 2126 | cmSystemTools::ReplaceString(ret, "\"", """); |
| 2127 | cmSystemTools::ReplaceString(ret, "<", "<"); |
| 2128 | cmSystemTools::ReplaceString(ret, ">", ">"); |
| 2129 | return ret; |
| 2130 | } |
| 2131 | |
| 2132 | std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPathSingle( |
| 2133 | std::string const& path) |
no test coverage detected