| 1983 | } |
| 1984 | |
| 1985 | static void ConvertToWindowsSlash(std::string& s) |
| 1986 | { |
| 1987 | // first convert all of the slashes |
| 1988 | for (auto& ch : s) { |
| 1989 | if (ch == '/') { |
| 1990 | ch = '\\'; |
| 1991 | } |
| 1992 | } |
| 1993 | } |
| 1994 | |
| 1995 | void cmVisualStudio10TargetGenerator::WriteGroups() |
| 1996 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…