@@ -21,24 +21,41 @@ Please download __linuxdeployqt-x86_64.AppImage__ from the [Releases](https://gi
21
21
## Usage
22
22
23
23
```
24
- Usage: linuxdeployqt app-binary [options]
24
+ Usage: linuxdeployqt < app-binary|desktop file> [options]
25
25
26
26
Options:
27
- -verbose=<0-3> : 0 = no output, 1 = error/warning (default), 2 = normal, 3 = debug
28
- -no-plugins : Skip plugin deployment
29
- -appimage : Create an AppImage
30
- -no-strip : Don't run 'strip' on the binaries
31
- -bundle-non-qt-libs : Also bundle non-core, non-Qt libraries
32
- -executable=<path> : Let the given executable use the deployed libraries too
33
- -qmldir=<path> : Scan for QML imports to bundle from the given directory, determined by Qt's qmlimportscanner
34
- -always-overwrite : Copy files even if the target file exists
35
- -qmake=<path> : The qmake executable to use
36
- -no-translations : Skip deployment of translations
37
- -extra-plugins=<list> : List of extra plugins which should be deployed, separated by comma
27
+ -always-overwrite : Copy files even if the target file exists.
28
+ -appimage : Create an AppImage (implies -bundle-non-qt-libs).
29
+ -bundle-non-qt-libs : Also bundle non-core, non-Qt libraries.
30
+ -exclude-libs=<list> : List of libraries which should be excluded,
31
+ separated by comma.
32
+ -executable=<path> : Let the given executable use the deployed libraries
33
+ too
34
+ -extra-plugins=<list> : List of extra plugins which should be deployed,
35
+ separated by comma.
36
+ -no-copy-copyright-files : Skip deployment of copyright files.
37
+ -no-plugins : Skip plugin deployment.
38
+ -no-strip : Don't run 'strip' on the binaries.
39
+ -no-translations : Skip deployment of translations.
40
+ -qmake=<path> : The qmake executable to use.
41
+ -qmldir=<path> : Scan for QML imports in the given path.
42
+ -show-exclude-libs : Print exclude libraries list.
43
+ -verbose=<0-3> : 0 = no output, 1 = error/warning (default),
44
+ 2 = normal, 3 = debug.
45
+ -version : Print version statement and exit.
38
46
39
47
linuxdeployqt takes an application as input and makes it
40
48
self-contained by copying in the Qt libraries and plugins that
41
49
the application uses.
50
+
51
+ By default it deploys the Qt instance that qmake on the $PATH points to.
52
+ The '-qmake' option can be used to point to the qmake executable
53
+ to be used instead.
54
+
55
+ Plugins related to a Qt library are copied in with the library.
56
+
57
+ See the "Deploying Applications on Linux" topic in the
58
+ documentation for more information about deployment on Linux.
42
59
```
43
60
44
61
#### Simplest example
0 commit comments