Files
qt-creator/src/plugins/python/python.qbs
Christian Stenger 890e62931c Python: Fix linking for mingw build
Change-Id: Id3a0718e49b4054aa65ef17b3c9ac889cbaf549f
Reviewed-by: David Schulz <david.schulz@qt.io>
2019-11-08 07:49:35 +00:00

42 lines
1.0 KiB
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" }
Depends { name: "LanguageServerProtocol" }
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",
]
}
}