| 84 | } |
| 85 | |
| 86 | static std::string VSHostPlatformName() |
| 87 | { |
| 88 | if (VSIsArm64Host()) { |
| 89 | return "ARM64"; |
| 90 | } |
| 91 | if (VSIsWow64()) { |
| 92 | return "x64"; |
| 93 | } |
| 94 | #if defined(_M_ARM) |
| 95 | return "ARM"; |
| 96 | #elif defined(_M_IA64) |
| 97 | return "Itanium"; |
| 98 | #elif defined(_WIN64) |
| 99 | return "x64"; |
| 100 | #else |
| 101 | return "Win32"; |
| 102 | #endif |
| 103 | } |
| 104 | |
| 105 | static std::string VSHostArchitecture( |
| 106 | cmGlobalVisualStudioGenerator::VSVersion v) |
no test coverage detected
searching dependent graphs…