Browse Source

Fix windows qt lib paths

tags/1.9.6
falkTX 9 years ago
parent
commit
48afb709d4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/carla_app.py

+ 2
- 2
source/carla_app.py View File

@@ -45,8 +45,8 @@ class CarlaApplication(object):

pathBinaries, pathResources = getPaths(libPrefix)

# Needed for MacOS LV2 plugin
if MACOS and os.path.exists(CWD):
# Needed for MacOS and Windows
if os.path.exists(CWD) and (MACOS or WINDOWS):
QApplication.addLibraryPath(CWD)

# Needed for local wine build


Loading…
Cancel
Save