()
| 358 | |
| 359 | |
| 360 | def 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 | |
| 385 | def get_libraries(): |
no test coverage detected