From c1e8ce62c92b2095d77de3a66cb24812bd48b174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Thu, 12 Apr 2018 00:10:04 -0300 Subject: [PATCH] Organize help order MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- tools/linuxdeployqt/main.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/tools/linuxdeployqt/main.cpp b/tools/linuxdeployqt/main.cpp index 1ed71c6..ef68b9b 100644 --- a/tools/linuxdeployqt/main.cpp +++ b/tools/linuxdeployqt/main.cpp @@ -67,23 +67,23 @@ int main(int argc, char **argv) qInfo() << "Usage: linuxdeployqt [options]"; qInfo() << ""; qInfo() << "Options:"; - qInfo() << " -verbose=<0-3> : 0 = no output, 1 = error/warning (default),"; - qInfo() << " 2 = normal, 3 = debug"; - qInfo() << " -no-plugins : Skip plugin deployment"; - qInfo() << " -appimage : Create an AppImage (implies -bundle-non-qt-libs)"; - qInfo() << " -no-strip : Don't run 'strip' on the binaries"; - qInfo() << " -bundle-non-qt-libs : Also bundle non-core, non-Qt libraries"; + qInfo() << " -always-overwrite : Copy files even if the target file exists."; + qInfo() << " -appimage : Create an AppImage (implies -bundle-non-qt-libs)."; + qInfo() << " -bundle-non-qt-libs : Also bundle non-core, non-Qt libraries."; + qInfo() << " -exclude-libs= : List of libraries which should be excluded,"; + qInfo() << " separated by comma."; qInfo() << " -executable= : Let the given executable use the deployed libraries"; qInfo() << " too"; - qInfo() << " -qmldir= : Scan for QML imports in the given path"; - qInfo() << " -always-overwrite : Copy files even if the target file exists"; - qInfo() << " -qmake= : The qmake executable to use"; - qInfo() << " -no-translations : Skip deployment of translations."; - qInfo() << " -no-copy-copyright-files : Skip deployment of copyright files."; qInfo() << " -extra-plugins= : List of extra plugins which should be deployed,"; qInfo() << " separated by comma."; - qInfo() << " -exclude-libs= : List of libraries which should be excluded,"; - qInfo() << " separated by comma."; + qInfo() << " -no-copy-copyright-files : Skip deployment of copyright files."; + qInfo() << " -no-plugins : Skip plugin deployment."; + qInfo() << " -no-strip : Don't run 'strip' on the binaries."; + qInfo() << " -no-translations : Skip deployment of translations."; + qInfo() << " -qmake= : The qmake executable to use."; + qInfo() << " -qmldir= : Scan for QML imports in the given path."; + qInfo() << " -verbose=<0-3> : 0 = no output, 1 = error/warning (default),"; + qInfo() << " 2 = normal, 3 = debug."; qInfo() << " -version : Print version statement and exit."; qInfo() << ""; qInfo() << "linuxdeployqt takes an application as input and makes it";