Files
qt-creator/src/plugins/python/python.qbs
David Schulz 6f520f8783 Python: extract pip installation task
Make it reusable for pyside and other packages.

Change-Id: If97e65a506d36916aaa61f48b9a2f71c458d4fe9
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
2022-03-21 11:38:06 +00:00

48 lines
1.2 KiB
QML

import qbs 1.0
QtcPlugin {
name: "Python"
Depends { name: "Qt.widgets" }
Depends { name: "QmlJS" }
Depends { name: "Utils" }
Depends { name: "Core" }
Depends { name: "TextEditor" }
Depends { name: "ProjectExplorer" }
Depends { name: "LanguageClient" }
Depends { name: "LanguageServerProtocol" }
Group {
name: "General"
files: [
"pipsupport.cpp",
"pipsupport.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",
"pythonutils.cpp",
"pythonutils.h",
]
}
}