()
| 459 | |
| 460 | |
| 461 | def build_all_wrapper_libraries_windows(): |
| 462 | python_compilers = get_available_python_compilers() |
| 463 | if not len(python_compilers): |
| 464 | print("[automate.py] ERROR: Visual Studio compiler not found") |
| 465 | sys.exit(1) |
| 466 | for msvs in python_compilers: |
| 467 | vcvars = python_compilers[msvs] |
| 468 | print("[automate.py] Build libcef_dll_wrapper libraries for" |
| 469 | " VS{msvs}".format(msvs=msvs)) |
| 470 | build_wrapper_library_windows(runtime_library=RUNTIME_MT, |
| 471 | msvs=msvs, vcvars=vcvars) |
| 472 | build_wrapper_library_windows(runtime_library=RUNTIME_MD, |
| 473 | msvs=msvs, vcvars=vcvars) |
| 474 | |
| 475 | |
| 476 | def build_wrapper_library_windows(runtime_library, msvs, vcvars): |
no test coverage detected