2014-03-11 11:30:14 +01:00
|
|
|
import qbs 1.0
|
2013-01-14 23:11:10 +04:00
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "PythonEditor"
|
|
|
|
|
|
2013-03-08 17:34:27 +01:00
|
|
|
Depends { name: "Qt.widgets" }
|
2014-02-10 13:02:33 +01:00
|
|
|
Depends { name: "Utils" }
|
|
|
|
|
|
2013-01-14 23:11:10 +04:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
2013-05-06 16:07:25 +02:00
|
|
|
Depends { name: "QtSupport" }
|
|
|
|
|
Depends { name: "ProjectExplorer" }
|
2013-01-14 23:11:10 +04:00
|
|
|
|
2013-07-30 18:00:27 +02:00
|
|
|
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"
|
|
|
|
|
]
|
|
|
|
|
}
|
2013-01-14 23:11:10 +04:00
|
|
|
}
|