diff options
author | Shyamnath Premnadh <shyamnath.premnadh@qt.io> | 2023-03-23 12:41:05 +0100 |
---|---|---|
committer | Shyamnath Premnadh <shyamnath.premnadh@qt.io> | 2023-03-29 17:24:10 +0200 |
commit | 66fb8337365d88638ebabe3e6e5684a4cae5109f (patch) | |
tree | f0eaf800ccb3206e22da9fc85c6405d29ef4c08c /sources/pyside-tools/deploy.pyproject | |
parent | 6fac378e4bf0c7b07aca2604131b290267d4ff0a (diff) |
Deployment: Refactor to enable Android support
- moving code into functions so that Android can re-use them
- new file "deploy_util.py" to store all the common utility functions
that can be reused for Android deployment tool
- new option "--name" to set the application name
- Change some print statements to log statements
- Adapt depoyment tests
- In default.spec, rename "packages" to "desktop_packages"
- Fix relative Qml file error in config.py i.e. it errors when the
path is already relative
Task-number: PYSIDE-1612
Pick-to: 6.5
Change-Id: Iaaea8837cc362b3cc8035b96247194c4a9679579
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/pyside-tools/deploy.pyproject')
-rw-r--r-- | sources/pyside-tools/deploy.pyproject | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside-tools/deploy.pyproject b/sources/pyside-tools/deploy.pyproject index 121369f34..c0085fbe1 100644 --- a/sources/pyside-tools/deploy.pyproject +++ b/sources/pyside-tools/deploy.pyproject @@ -1,5 +1,6 @@ { "files": ["deploy.py", "deploy_lib/__init__.py", "deploy_lib/commands.py", "deploy_lib/config.py", "deploy_lib/default.spec", "deploy_lib/nuitka_helper.py", "deploy_lib/pyside_icon.jpg", - "deploy_lib/python_helper.py"] + "deploy_lib/python_helper.py", "deploy_lib/deploy_util.py" + ] } |