diff options
author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2022-01-13 16:11:06 +0100 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2022-03-14 15:50:11 +0100 |
commit | dd4cd6579723e9080d2560f97802fa17c68d37fc (patch) | |
tree | 2524b75a1dd204b79e918e9cb0b2a701ade5b9d2 /sources/pyside-tools/pyside_tool.py | |
parent | 8f61d67d26eb89b055edb8f9bfc2f804ad1b6fb0 (diff) |
Long live pyside6-project!
Add a tool to build Qt Designer forms, resource files and QML type files
in a .pyproject.
[ChangeLog][PySide6] pyside6-project, a tool for building projects and
running QML checks, has been added.
Task-number: PYSIDE-1709
Change-Id: I101ef04cb07c00a1ac75d18d81a2856305253109
Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@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 984480d41..4878bf870 100644 --- a/sources/pyside-tools/pyside_tool.py +++ b/sources/pyside-tools/pyside_tool.py @@ -178,5 +178,9 @@ def metaobjectdump(): pyside_script_wrapper("metaobjectdump.py") +def project(): + pyside_script_wrapper("project.py") + + if __name__ == "__main__": main() |