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

Function get_library_dirs

tools/cython_setup.py:360–382  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

358
359
360def get_library_dirs():
361 print("[cython_setup.py] Prepare library directories")
362 library_dirs = [
363 os.path.join(CEF_BINARIES_LIBRARIES, "lib"),
364 os.path.join(CEF_BINARIES_LIBRARIES, "lib",
365 get_msvs_for_python(vs_prefix=True)),
366 ]
367 if WINDOWS:
368 library_dirs.extend([
369 get_winsdk_lib(),
370 BUILD_CEFPYTHON_APP,
371 BUILD_CLIENT_HANDLER,
372 BUILD_CPP_UTILS,
373 ])
374 if MAC:
375 library_dirs.append(os.path.join(CEF_BINARIES_LIBRARIES, "bin"))
376 if MAC or LINUX:
377 library_dirs.extend([
378 os.path.join(SRC_DIR, "client_handler"),
379 os.path.join(SRC_DIR, "subprocess"), # libcefpythonapp
380 os.path.join(SRC_DIR, "cpp_utils"),
381 ])
382 return library_dirs
383
384
385def get_libraries():

Callers 1

mainFunction · 0.85

Calls 2

get_msvs_for_pythonFunction · 0.85
get_winsdk_libFunction · 0.85

Tested by

no test coverage detected