forked from qt-creator/qt-creator
Make it reusable for pyside and other packages. Change-Id: If97e65a506d36916aaa61f48b9a2f71c458d4fe9 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
48 lines
1.2 KiB
QML
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",
|
|
]
|
|
}
|
|
}
|