forked from qt-creator/qt-creator
Change-Id: I43179961cdee855b710fc082568a7d0d9a0f0719 Reviewed-by: David Schulz <david.schulz@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
61 lines
1.7 KiB
QML
61 lines
1.7 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",
|
|
"pythonbuildconfiguration.cpp",
|
|
"pythonbuildconfiguration.h",
|
|
"pysideuicextracompiler.cpp",
|
|
"pysideuicextracompiler.h",
|
|
"python.qrc",
|
|
"pythonbuildsystem.cpp",
|
|
"pythonbuildsystem.h",
|
|
"pythonconstants.h",
|
|
"pythoneditor.cpp",
|
|
"pythoneditor.h",
|
|
"pythonformattoken.h",
|
|
"pythonhighlighter.cpp",
|
|
"pythonhighlighter.h",
|
|
"pythonindenter.cpp",
|
|
"pythonindenter.h",
|
|
"pythonkitaspect.cpp",
|
|
"pythonkitaspect.h",
|
|
"pythonlanguageclient.cpp",
|
|
"pythonlanguageclient.h",
|
|
"pythonplugin.cpp",
|
|
"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",
|
|
]
|
|
}
|
|
}
|