diff options
author | Tobias Markmann <tm@ayena.de> | 2016-08-09 11:36:25 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2016-08-09 14:25:16 (GMT) |
commit | 3c7b2b3dc884f347771f6e3036779193e7e45627 (patch) | |
tree | 010b3fce4304aae21ae5f091f0a8c4765c89c91d /Swift/QtUI/SConscript | |
parent | 18f6b232f2ba8290a1076558072289c050f07b55 (diff) | |
download | swift-3c7b2b3dc884f347771f6e3036779193e7e45627.zip swift-3c7b2b3dc884f347771f6e3036779193e7e45627.tar.bz2 |
Fix SVG rendering related packaging issues
Added Qt image format plugin packages and Qt SVG image format
plugin to InstallSwiftDependencies.sh script and Debian
packaging.
Test-Information:
Tested that macdeployqt now adds the image format plugin for
SVG to the deployable app bundles.
Change-Id: Id1ce265073cb8adb9315cb40da032ee11ea8761d
Diffstat (limited to 'Swift/QtUI/SConscript')
-rw-r--r-- | Swift/QtUI/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Swift/QtUI/SConscript b/Swift/QtUI/SConscript index 403de5e..777797c 100644 --- a/Swift/QtUI/SConscript +++ b/Swift/QtUI/SConscript @@ -57,7 +57,9 @@ myenv.Tool("textfile", toolpath = ["#/BuildTools/SCons/Tools"]) qt4modules = ['QtCore', 'QtWebKit', 'QtGui'] if myenv["qt5"] : qt_version = '5' - qt4modules += ['QtWidgets', 'QtWebKitWidgets', 'QtMultimedia'] + # QtSvg is required so the image format plugin for SVG images is installed + # correctly by Qt's deployment tools. + qt4modules += ['QtWidgets', 'QtWebKitWidgets', 'QtMultimedia', 'QtSvg'] if env["PLATFORM"] != "win32" and env["PLATFORM"] != "darwin" : qt4modules += ['QtX11Extras'] else : |