Create an AppImage implies -bundle-non-qt-libs

This commit is contained in:
probonopd
2016-10-08 17:19:14 +02:00
parent 194fe7ab5d
commit 2b2ab688b2
+2 -1
View File
@@ -47,7 +47,7 @@ int main(int argc, char **argv)
qDebug() << "Options:"; qDebug() << "Options:";
qDebug() << " -verbose=<0-3> : 0 = no output, 1 = error/warning (default), 2 = normal, 3 = debug"; qDebug() << " -verbose=<0-3> : 0 = no output, 1 = error/warning (default), 2 = normal, 3 = debug";
qDebug() << " -no-plugins : Skip plugin deployment"; 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() << " -no-strip : Don't run 'strip' on the binaries";
qDebug() << " -bundle-non-qt-libs : Also bundle non-core, non-Qt libraries"; qDebug() << " -bundle-non-qt-libs : Also bundle non-core, non-Qt libraries";
qDebug() << " -executable=<path> : Let the given executable use the deployed libraries too"; qDebug() << " -executable=<path> : Let the given executable use the deployed libraries too";
@@ -125,6 +125,7 @@ int main(int argc, char **argv)
} else if (argument == QByteArray("-appimage")) { } else if (argument == QByteArray("-appimage")) {
LogDebug() << "Argument found:" << argument; LogDebug() << "Argument found:" << argument;
appimage = true; appimage = true;
bundleAllButCoreLibs = true;
} else if (argument == QByteArray("-no-strip")) { } else if (argument == QByteArray("-no-strip")) {
LogDebug() << "Argument found:" << argument; LogDebug() << "Argument found:" << argument;
runStripEnabled = false; runStripEnabled = false;