Skip to content

Commit 7d795fd

Browse files
committed
Add a warning message when there are libraries to be excluded
1 parent f7d0520 commit 7d795fd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tools/linuxdeployqt/main.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,11 @@ int main(int argc, char **argv)
439439
}
440440
}
441441

442+
if (!excludeLibs.isEmpty())
443+
{
444+
qWarning() << "WARNING: Excluding the following libraries might break the AppImage. Please double-check the list:" << excludeLibs;
445+
}
446+
442447
DeploymentInfo deploymentInfo = deployQtLibraries(appDirPath, additionalExecutables,
443448
qmakeExecutable);
444449

0 commit comments

Comments
 (0)