Add a warning message when there are libraries to be excluded

This commit is contained in:
Dinesh Manajipet
2018-04-01 18:49:38 +05:30
parent f7d0520324
commit 7d795fd967
+5
View File
@@ -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, DeploymentInfo deploymentInfo = deployQtLibraries(appDirPath, additionalExecutables,
qmakeExecutable); qmakeExecutable);