diff options
author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2022-09-02 09:51:45 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2022-09-02 12:16:49 +0200 |
commit | 29a40c45c78aad65adb4bc17318fdc53a5ed418b (patch) | |
tree | 75854b815c1bcbb6300a576c022f7d55f4fc5148 /sources/pyside-tools/pyside_tool.py | |
parent | 065766883f5e34d20ca88084cd747813a84ed2d3 (diff) |
Add an entry point for qtpy2cpp
[ChangeLog][pyside6] pyside6-qtpy2cpp.py, a Qt-specific, simple tool
for converting Python code to C++ has been added.
Fixes: PYSIDE-1945
Change-Id: I77659ec6b49c0d3f657b4d19e5866f3057561771
Reviewed-by: Christian Tismer <tismer@stackless.com>
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 8deed8cf1..f9fda6de4 100644 --- a/sources/pyside-tools/pyside_tool.py +++ b/sources/pyside-tools/pyside_tool.py @@ -158,5 +158,9 @@ def qml(): pyside_script_wrapper("qml.py") +def qtpy2cpp(): + pyside_script_wrapper("qtpy2cpp.py") + + if __name__ == "__main__": main() |