Browse Source

Add a warning message when there are libraries to be excluded

master
Dinesh Manajipet 7 years ago
parent
commit
7d795fd967
  1. 5
      tools/linuxdeployqt/main.cpp

5
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);

Loading…
Cancel
Save