From 7d795fd967beb87f6bdfa16be3797931f6ede55b Mon Sep 17 00:00:00 2001 From: Dinesh Manajipet Date: Sun, 1 Apr 2018 18:49:38 +0530 Subject: [PATCH] Add a warning message when there are libraries to be excluded --- tools/linuxdeployqt/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/linuxdeployqt/main.cpp b/tools/linuxdeployqt/main.cpp index af56672..1ed71c6 100644 --- a/tools/linuxdeployqt/main.cpp +++ b/tools/linuxdeployqt/main.cpp @@ -439,6 +439,11 @@ int main(int argc, char **argv) } } + if (!excludeLibs.isEmpty()) + { + qWarning() << "WARNING: Excluding the following libraries might break the AppImage. Please double-check the list:" << excludeLibs; + } + DeploymentInfo deploymentInfo = deployQtLibraries(appDirPath, additionalExecutables, qmakeExecutable);