diff options
| author | Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> | 2022-08-04 11:32:12 +0200 |
|---|---|---|
| committer | Adrian Herrmann <adrian.herrmann@qt.io> | 2022-10-10 19:19:16 +0200 |
| commit | 3dd33bc421269aff6599549702c33b34d6192267 (patch) | |
| tree | aea60d84e444c61bc534ee2e827b20f9f01d7e4f /sources/pyside-tools/pyside_tool.py | |
| parent | 53cd499c5ee2fe47996a3d7213a4021fd5538965 (diff) | |
Desktop Deployment
- One step solution to deploy PySide6 applications using nuitka without
worrying about the plethora of cli options provided by nuitka, at the
same time retaining the option to specify advanced nuitka options.
- Target: Windows, Linux, Mac
- All options are specified through a config file. This makes it easier
for expansion to android deployment
- Tested for projects with QML files, ui files and rc files
Task-number: PYSIDE-1612
Change-Id: Iefbdb55fa1c999295fac2a86b1f6d9b9ec45a0b1
Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside-tools/pyside_tool.py')
| -rw-r--r-- | sources/pyside-tools/pyside_tool.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sources/pyside-tools/pyside_tool.py b/sources/pyside-tools/pyside_tool.py index f9fda6de4..f8e4ab415 100644 --- a/sources/pyside-tools/pyside_tool.py +++ b/sources/pyside-tools/pyside_tool.py @@ -162,5 +162,9 @@ def qtpy2cpp(): pyside_script_wrapper("qtpy2cpp.py") +def deploy(): + pyside_script_wrapper("deploy.py") + + if __name__ == "__main__": main() |
