Skip to content

Commit c1e8ce6

Browse files
Organize help order
Signed-off-by: Patrick José Pereira <[email protected]>
1 parent a714ea2 commit c1e8ce6

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

tools/linuxdeployqt/main.cpp

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -67,23 +67,23 @@ int main(int argc, char **argv)
6767
qInfo() << "Usage: linuxdeployqt <app-binary|desktop file> [options]";
6868
qInfo() << "";
6969
qInfo() << "Options:";
70-
qInfo() << " -verbose=<0-3> : 0 = no output, 1 = error/warning (default),";
71-
qInfo() << " 2 = normal, 3 = debug";
72-
qInfo() << " -no-plugins : Skip plugin deployment";
73-
qInfo() << " -appimage : Create an AppImage (implies -bundle-non-qt-libs)";
74-
qInfo() << " -no-strip : Don't run 'strip' on the binaries";
75-
qInfo() << " -bundle-non-qt-libs : Also bundle non-core, non-Qt libraries";
70+
qInfo() << " -always-overwrite : Copy files even if the target file exists.";
71+
qInfo() << " -appimage : Create an AppImage (implies -bundle-non-qt-libs).";
72+
qInfo() << " -bundle-non-qt-libs : Also bundle non-core, non-Qt libraries.";
73+
qInfo() << " -exclude-libs=<list> : List of libraries which should be excluded,";
74+
qInfo() << " separated by comma.";
7675
qInfo() << " -executable=<path> : Let the given executable use the deployed libraries";
7776
qInfo() << " too";
78-
qInfo() << " -qmldir=<path> : Scan for QML imports in the given path";
79-
qInfo() << " -always-overwrite : Copy files even if the target file exists";
80-
qInfo() << " -qmake=<path> : The qmake executable to use";
81-
qInfo() << " -no-translations : Skip deployment of translations.";
82-
qInfo() << " -no-copy-copyright-files : Skip deployment of copyright files.";
8377
qInfo() << " -extra-plugins=<list> : List of extra plugins which should be deployed,";
8478
qInfo() << " separated by comma.";
85-
qInfo() << " -exclude-libs=<list> : List of libraries which should be excluded,";
86-
qInfo() << " separated by comma.";
79+
qInfo() << " -no-copy-copyright-files : Skip deployment of copyright files.";
80+
qInfo() << " -no-plugins : Skip plugin deployment.";
81+
qInfo() << " -no-strip : Don't run 'strip' on the binaries.";
82+
qInfo() << " -no-translations : Skip deployment of translations.";
83+
qInfo() << " -qmake=<path> : The qmake executable to use.";
84+
qInfo() << " -qmldir=<path> : Scan for QML imports in the given path.";
85+
qInfo() << " -verbose=<0-3> : 0 = no output, 1 = error/warning (default),";
86+
qInfo() << " 2 = normal, 3 = debug.";
8787
qInfo() << " -version : Print version statement and exit.";
8888
qInfo() << "";
8989
qInfo() << "linuxdeployqt takes an application as input and makes it";

0 commit comments

Comments
 (0)