mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 15:40:17 +00:00
085fa28be7
git-svn-id: http://svn.pyinstaller.org/trunk@614 8dd32b29-ccff-0310-8a9a-9233e24343b1
12 lines
308 B
Python
12 lines
308 B
Python
hiddenimports = ['sip', 'PyQt4.QtCore', 'PyQt4._qt']
|
|
|
|
from hooks.hookutils import qt4_plugins_dir
|
|
pdir = qt4_plugins_dir()
|
|
|
|
datas = [
|
|
(pdir + "/script/*.so", "qt4_plugins/script"),
|
|
(pdir + "/script/*.dll", "qt4_plugins/script"),
|
|
(pdir + "/script/*.dylib", "qt4_plugins/script"),
|
|
]
|
|
|