MCPcopy Create free account
hub / github.com/cztomczak/cefpython / build_all_wrapper_libraries_windows

Function build_all_wrapper_libraries_windows

tools/automate.py:461–473  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

459
460
461def 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
476def build_wrapper_library_windows(runtime_library, msvs, vcvars):

Callers 1

build_cef_projectsFunction · 0.85

Tested by

no test coverage detected