Files
qt-creator/src/plugins/python/python.qbs
David Schulz be54b3db2f Python: check for pyside in qt installation
Fixes: PYSIDE-2153
Change-Id: I91ec24eb6a71d4f29edaf7a707b3c49a4deb725a
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
2023-08-28 06:04:08 +00:00

58 lines
1.5 KiB
QML

import qbs 1.0
QtcPlugin {
name: "Python"
Depends { name: "Qt.widgets" }
Depends { name: "QmlJS" }
Depends { name: "Utils" }
Depends { name: "Core" }
Depends { name: "LanguageClient" }
Depends { name: "LanguageServerProtocol" }
Depends { name: "ProjectExplorer" }
Depends { name: "QtSupport" }
Depends { name: "TextEditor" }
Group {
name: "General"
files: [
"pipsupport.cpp",
"pipsupport.h",
"pyside.cpp",
"pyside.h",
"pysidebuildconfiguration.cpp",
"pysidebuildconfiguration.h",
"pysideuicextracompiler.cpp",
"pysideuicextracompiler.h",
"python.qrc",
"pythonconstants.h",
"pythoneditor.cpp",
"pythoneditor.h",
"pythonformattoken.h",
"pythonhighlighter.cpp",
"pythonhighlighter.h",
"pythonindenter.cpp",
"pythonindenter.h",
"pythonlanguageclient.cpp",
"pythonlanguageclient.h",
"pythonplugin.cpp",
"pythonplugin.h",
"pythonproject.cpp",
"pythonproject.h",
"pythonrunconfiguration.cpp",
"pythonrunconfiguration.h",
"pythonscanner.cpp",
"pythonscanner.h",
"pythonsettings.cpp",
"pythonsettings.h",
"pythontr.h",
"pythonutils.cpp",
"pythonutils.h",
"pythonwizardpage.cpp",
"pythonwizardpage.h",
]
}
}