forked from qt-creator/qt-creator
The respective items are available without it. Change-Id: Idc840cf08e7bec84f561c096afe8de25b1fb8468 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
36 lines
878 B
QML
36 lines
878 B
QML
import qbs 1.0
|
|
|
|
QtcPlugin {
|
|
name: "PythonEditor"
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
Depends { name: "QtSupport" }
|
|
Depends { name: "ProjectExplorer" }
|
|
|
|
Group {
|
|
name: "General"
|
|
files: [
|
|
"pythoneditor.cpp", "pythoneditor.h",
|
|
"pythoneditorconstants.h",
|
|
"pythoneditorplugin.cpp", "pythoneditorplugin.h",
|
|
"pythoneditorplugin.qrc",
|
|
]
|
|
}
|
|
|
|
Group {
|
|
name: "Tools"
|
|
prefix: "tools/"
|
|
files: [
|
|
"lexical/pythonformattoken.h",
|
|
"lexical/pythonscanner.h", "lexical/pythonscanner.cpp",
|
|
"lexical/sourcecodestream.h",
|
|
"pythonhighlighter.h", "pythonhighlighter.cpp",
|
|
"pythonindenter.cpp", "pythonindenter.h"
|
|
]
|
|
}
|
|
}
|