diff options
author | Tobias Markmann <tm@ayena.de> | 2017-03-14 08:29:29 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2017-03-14 08:29:29 (GMT) |
commit | 8e4ba4c977065f77ea6b9da6cc6e327390d14cf7 (patch) | |
tree | b79127eef0f0fb5bc6e4aee33e6ccce8178a7816 /Swift/QtUI | |
parent | 9601c3e0475a4d05c4c245183c787bd7de805be6 (diff) | |
download | swift-8e4ba4c977065f77ea6b9da6cc6e327390d14cf7.zip swift-8e4ba4c977065f77ea6b9da6cc6e327390d14cf7.tar.bz2 |
Fix default avatar rendering on Windows
Swift installed from our Windows installer packages would
not display the default avatar, due to missing Qt5Svg module.
Test-Information:
Build Windows installer package on Windows 8, with VS 2013 and
Qt 5.4.2. Qt5Svg.dll is installed and default avatars are
displayed in the roster.
Change-Id: Iaa0fb0b013fc32d9d84897e83902ae7487fe72d7
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/SConscript b/Swift/QtUI/SConscript index 1bcba64..2f95b3e 100644 --- a/Swift/QtUI/SConscript +++ b/Swift/QtUI/SConscript @@ -427,7 +427,7 @@ if env["PLATFORM"] == "win32" : qtlibs.append("phonon") qtlibs = [lib + '4' for lib in qtlibs] else : - qtlibs += ['QtQuick', 'QtQml', 'QtPositioning', 'QtMultimedia', 'QtSql', 'QtSensors', 'QtWidgets', 'QtWebChannel', 'QtWebKitWidgets', 'QtMultimediaWidgets', 'QtOpenGL', 'QtPrintSupport'] + qtlibs += ['QtQuick', 'QtQml', 'QtPositioning', 'QtMultimedia', 'QtSql', 'QtSensors', 'QtSvg', 'QtWidgets', 'QtWebChannel', 'QtWebKitWidgets', 'QtMultimediaWidgets', 'QtOpenGL', 'QtPrintSupport'] qtlibs = [lib.replace('Qt', 'Qt5') for lib in qtlibs] qtlibs += ['icuin51', 'icuuc51', 'icudt51', 'libGLESv2', 'libEGL'] qtplugins["platforms"] = ['windows'] |