Browse Source

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

master
probonopd 8 years ago
parent
commit
2b2ab688b2
  1. 3
      linuxdeployqt/main.cpp

3
linuxdeployqt/main.cpp

@ -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;

Loading…
Cancel
Save