From eba669d39b7f5d7ee67cf1e4ee4e7c457d19430e Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 27 Jan 2019 20:02:13 +0000 Subject: [PATCH] Always bundle iconengines,imageformats Closes https://github.com/probonopd/linuxdeployqt/issues/82 Closes https://github.com/probonopd/linuxdeployqt/issues/325 --- tools/linuxdeployqt/shared.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/linuxdeployqt/shared.cpp b/tools/linuxdeployqt/shared.cpp index 358ef20..52e0451 100644 --- a/tools/linuxdeployqt/shared.cpp +++ b/tools/linuxdeployqt/shared.cpp @@ -1226,6 +1226,12 @@ void deployPlugins(const AppDirInfo &appDirInfo, const QString &pluginSourcePath // At runtime, export QT_QPA_PLATFORMTHEME=gtk2 (Xfce does this itself) pluginList.append("platformthemes/libqgtk2.so"); pluginList.append("styles/libqgtk2style.so"); + + // Always bundle iconengines,imageformats + // https://github.com/probonopd/linuxdeployqt/issues/82 + // https://github.com/probonopd/linuxdeployqt/issues/325 + pluginList.append("iconengines"); + pluginList.append("imageformats"); LogDebug() << "deploymentInfo.deployedLibraries before attempting to bundle required plugins:" << deploymentInfo.deployedLibraries;