()
| 222 | |
| 223 | |
| 224 | def find_vswhere(): |
| 225 | vswhere = ( |
| 226 | pathlib.Path(os.environ["ProgramFiles(x86)"]) |
| 227 | / "Microsoft Visual Studio" |
| 228 | / "Installer" |
| 229 | / "vswhere.exe" |
| 230 | ) |
| 231 | |
| 232 | if not vswhere.exists(): |
| 233 | print("%s does not exist" % vswhere) |
| 234 | sys.exit(1) |
| 235 | |
| 236 | return vswhere |
| 237 | |
| 238 | |
| 239 | def find_vs_path(path, msvc_version): |