From 2b2ab688b24d7484e0a2c00e30c297995a544428 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 8 Oct 2016 17:19:14 +0200 Subject: [PATCH] Create an AppImage implies -bundle-non-qt-libs --- linuxdeployqt/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linuxdeployqt/main.cpp b/linuxdeployqt/main.cpp index 9c5b873..3e2d81c 100644 --- a/linuxdeployqt/main.cpp +++ b/linuxdeployqt/main.cpp @@ -47,7 +47,7 @@ int main(int argc, char **argv) qDebug() << "Options:"; qDebug() << " -verbose=<0-3> : 0 = no output, 1 = error/warning (default), 2 = normal, 3 = debug"; qDebug() << " -no-plugins : Skip plugin deployment"; - qDebug() << " -appimage : Create an AppImage"; + qDebug() << " -appimage : Create an AppImage (implies -bundle-non-qt-libs)"; qDebug() << " -no-strip : Don't run 'strip' on the binaries"; qDebug() << " -bundle-non-qt-libs : Also bundle non-core, non-Qt libraries"; qDebug() << " -executable= : Let the given executable use the deployed libraries too"; @@ -125,6 +125,7 @@ int main(int argc, char **argv) } else if (argument == QByteArray("-appimage")) { LogDebug() << "Argument found:" << argument; appimage = true; + bundleAllButCoreLibs = true; } else if (argument == QByteArray("-no-strip")) { LogDebug() << "Argument found:" << argument; runStripEnabled = false;