mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
385c2b2615
git-svn-id: http://svn.pyinstaller.org/trunk@697 8dd32b29-ccff-0310-8a9a-9233e24343b1
12 lines
369 B
Python
12 lines
369 B
Python
hiddenimports = ['sip', 'PyQt4.QtGui', 'PyQt4._qt']
|
|
|
|
from hooks.hookutils import qt4_phonon_plugins_dir
|
|
pdir = qt4_phonon_plugins_dir()
|
|
|
|
datas = [
|
|
(pdir + "/phonon_backend/*.so", "qt4_plugins/phonon_backend"),
|
|
(pdir + "/phonon_backend/*.dll", "qt4_plugins/phonon_backend"),
|
|
(pdir + "/phonon_backend/*.dylib", "qt4_plugins/phonon_backend"),
|
|
]
|
|
|