Skip to content

Commit a22fa5d

Browse files
authored
freeze.py: Add paths to moved Windows DLLs (#3390)
1 parent 7119481 commit a22fa5d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

freeze.py

+4
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,12 @@
108108
print("Loaded modules from openshot_qt directory: %s" % os.path.join(PATH, "openshot_qt"))
109109

110110
# Append possible build server paths
111+
111112
sys.path.insert(0, os.path.join(PATH, "build", "install-x86", "lib"))
113+
sys.path.insert(0, os.path.join(PATH, "build", "install-x86", "bin"))
114+
112115
sys.path.insert(0, os.path.join(PATH, "build", "install-x64", "lib"))
116+
sys.path.insert(0, os.path.join(PATH, "build", "install-x64", "bin"))
113117

114118

115119
from classes import info

0 commit comments

Comments
 (0)