diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-11-01 15:08:17 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-11-01 15:08:17 (GMT) |
commit | 7ff184d4c980752d6e0c4f38a2eaadce4dead6f2 (patch) | |
tree | 998972188cd8046fb3d1c9aa3fd957ada2339300 /Swift | |
parent | 1653a7260f5fdd35c7569a9fd541d6194a46ff1c (diff) | |
download | swift-7ff184d4c980752d6e0c4f38a2eaadce4dead6f2.zip swift-7ff184d4c980752d6e0c4f38a2eaadce4dead6f2.tar.bz2 |
Fix incorrectly bundled Qt image plugins.
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/SConscript | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Swift/QtUI/SConscript b/Swift/QtUI/SConscript index c70f8a0..ee1c762 100644 --- a/Swift/QtUI/SConscript +++ b/Swift/QtUI/SConscript @@ -110,8 +110,9 @@ if env["PLATFORM"] == "win32" : myenv.WindowsBundle("Swift", resources = [ os.path.join(env["OPENSSL_DIR"], "bin", "ssleay32.dll"), os.path.join(env["OPENSSL_DIR"], "bin", "libeay32.dll"), - [os.path.join(env["QTDIR"], "plugins", "imageformats", "q" + codec + "4.dll") for codec in ["gif", "ico", "jpeg", "mng", "svg", "tiff"]] - ], qtlibs = ["QtCore4", "QtGui4", "QtNetwork4", "QtWebKit4", "phonon4"]) + ], + qtimageformats = ["gif", "ico", "jpeg", "mng", "svg", "tiff"], + qtlibs = ["QtCore4", "QtGui4", "QtNetwork4", "QtWebKit4", "phonon4"]) myenv.Append(NSIS_OPTIONS = [ "/DmsvccRedistributableDir=\"" + env["vcredist"] + "\"", |