Files
pyinstaller/support/rthooks/qt4plugins.py
T
2009-02-22 16:53:22 +00:00

11 lines
385 B
Python

# Qt4 plugins are bundled as data files (see hooks/hook-PyQt4*),
# within a "qt4_plugins" directory.
# We add a runtime hook to tell Qt4 where to find them,
# through an environment variable.
import os
d = "qt4_plugins"
if "_MEIPASS2" in os.environ:
d = os.path.join(os.environ["_MEIPASS2"], d)
os.environ["QT_PLUGIN_PATH"] = d + os.pathsep + os.environ.get("QT_PLUGIN_PATH", "")