Files
qt-creator/src/plugins/python/python.qbs
David Schulz c8ccfea225 Python: Switch pyls on interpreter change
Change-Id: I458b635986a55003a1e7254e27e2df9667704273
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
2019-10-18 05:23:10 +00:00

41 lines
1021 B
QML

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