aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/__init__.py
blob: a1d1f0c0717187d1b96a1b64f6e7a2f945466964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

PYSIDE = 'pyside6'
PYSIDE_MODULE = 'PySide6'
SHIBOKEN = 'shiboken6'

PYSIDE_PYTHON_TOOLS = ["metaobjectdump",
                       "deploy",
                       "project",
                       "qml",
                       "qtpy2cpp",
                       "genpyi"]
PYSIDE_LINUX_BIN_TOOLS = ["lupdate",
                          "lrelease",
                          "qmllint",
                          "qmlformat",
                          "qmlls",
                          "assistant",
                          "designer",
                          "linguist"]
PYSIDE_LINUX_LIBEXEC_TOOLS = ["uic",
                              "rcc",
                              "qmltyperegistrar",
                              "qmlimportscanner"]
# all Qt tools are in 'bin' folder in Windows
PYSIDE_WINDOWS_BIN_TOOLS = PYSIDE_LINUX_LIBEXEC_TOOLS + PYSIDE_LINUX_BIN_TOOLS