Files
qt-creator/src/plugins/pythoneditor/pythoneditor.qbs
Christian Kandeler 9d677e3302 qbs build: Remove unneeded import statements.
The respective items are available without it.

Change-Id: Idc840cf08e7bec84f561c096afe8de25b1fb8468
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
2014-11-10 15:45:14 +01:00

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"
]
}
}