aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside-tools/CMakeLists.txt
diff options
context:
space:
mode:
authorShyamnath Premnadh <[email protected]>2022-04-04 16:55:52 +0200
committerShyamnath Premnadh <[email protected]>2022-06-14 12:34:08 +0200
commitd78151f89b2c374af366bee536c8ceeae3b2ab5e (patch)
tree807473b4c90cd1c324f95ffead8516f1bb6f2150 /sources/pyside-tools/CMakeLists.txt
parent73adefe22ffbfabe0ef213e9c2fe2c56efdd7488 (diff)
tools: add pyside6-qml
- pyside6-qml is a tool that mimics the capabilities of qml utility and enables quick prototyping for qml files. Most cli options of the qml tool are carried forward to this tool. example-usage: pyside6-qml -a gui examples/declarative/editingmodel/main.qml To see all the cli options available with this tool, do: pyside6-qml --help Task-number: PYSIDE-1878 Pick-to: 6.3 Change-Id: I98bd77ccf6a0a286bb54da264312e81bf2964dc7 Reviewed-by: Christian Tismer <[email protected]>
Diffstat (limited to 'sources/pyside-tools/CMakeLists.txt')
-rw-r--r--sources/pyside-tools/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside-tools/CMakeLists.txt b/sources/pyside-tools/CMakeLists.txt
index c5195a1ee..281daf68a 100644
--- a/sources/pyside-tools/CMakeLists.txt
+++ b/sources/pyside-tools/CMakeLists.txt
@@ -5,7 +5,8 @@ include(cmake/PySideToolsSetup.cmake)
set(files ${CMAKE_CURRENT_SOURCE_DIR}/pyside_tool.py
${CMAKE_CURRENT_SOURCE_DIR}/metaobjectdump.py
- ${CMAKE_CURRENT_SOURCE_DIR}/project.py)
+ ${CMAKE_CURRENT_SOURCE_DIR}/project.py
+ ${CMAKE_CURRENT_SOURCE_DIR}/qml.py)
set(directories)
if(NOT NO_QT_TOOLS STREQUAL "yes")