forked from qt-creator/qt-creator
Remove virtual, add override, add = delete, remove QLatin1*, flatten filesystem hierarchy, remove unneeded 'inline', use initializer list, etc. Change-Id: I0a95d806d73ca1a33cfd1ba85c2664d9ebc32690 Reviewed-by: David Schulz <david.schulz@qt.io>
28 lines
718 B
QML
28 lines
718 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",
|
|
"pythonhighlighter.h", "pythonhighlighter.cpp",
|
|
"pythonindenter.cpp", "pythonindenter.h"
|
|
"pythonformattoken.h",
|
|
"pythonscanner.h", "pythonscanner.cpp"
|
|
]
|
|
}
|
|
}
|