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",
|
|
|
|
|
"pythonhighlighter.h", "pythonhighlighter.cpp",
|
2016-08-26 16:22:54 +02:00
|
|
|
"pythonindenter.cpp", "pythonindenter.h",
|
2016-08-03 00:07:44 +02:00
|
|
|
"pythonformattoken.h",
|
2016-08-26 16:22:54 +02:00
|
|
|
"pythonscanner.h", "pythonscanner.cpp",
|
2013-07-30 18:00:27 +02:00
|
|
|
]
|
|
|
|
|
}
|
2013-01-14 23:11:10 +04:00
|
|
|
}
|