Browse Source

Adjust qt plugin path tricks for local development builds

tags/v2.1-rc1
falkTX 5 years ago
parent
commit
e5b045a282
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/frontend/carla_app.py

+ 1
- 1
source/frontend/carla_app.py View File

@@ -42,7 +42,7 @@ class CarlaApplication(object):

# Needed for local wine build
if WINDOWS and CWD.endswith(("frontend", "resources")) and os.getenv("CXFREEZE") is None:
QApplication.addLibraryPath("C:\\Python34\\Lib\\site-packages\\PyQt5\\plugins")
QApplication.addLibraryPath("H:\\builds\\msys2-i686\\mingw32\\share\\qt5\\plugins")

# Use binary dir as library path (except in Windows)
if os.path.exists(pathBinaries) and not WINDOWS:


Loading…
Cancel
Save