2013-01-14 23:11:10 +04:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
2013-10-02 17:52:45 +02:00
|
|
|
import QtcPlugin
|
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",
|
|
|
|
|
"pythoneditorfactory.cpp", "pythoneditorfactory.h",
|
|
|
|
|
"pythoneditorplugin.cpp", "pythoneditorplugin.h",
|
|
|
|
|
"pythoneditorplugin.qrc",
|
|
|
|
|
"pythoneditorwidget.cpp", "pythoneditorwidget.h",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Group {
|
|
|
|
|
name: "Tools"
|
|
|
|
|
prefix: "tools/"
|
|
|
|
|
files: [
|
|
|
|
|
"lexical/pythonformattoken.h",
|
|
|
|
|
"lexical/pythonscanner.h", "lexical/pythonscanner.cpp",
|
|
|
|
|
"lexical/sourcecodestream.h",
|
|
|
|
|
"pythonhighlighter.h", "pythonhighlighter.cpp",
|
2013-08-14 13:52:13 +02:00
|
|
|
"pythonhighlighterfactory.h", "pythonhighlighterfactory.cpp",
|
2013-07-30 18:00:27 +02:00
|
|
|
"pythonindenter.cpp", "pythonindenter.h"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Group {
|
|
|
|
|
name: "Wizard"
|
|
|
|
|
prefix: "wizard/"
|
|
|
|
|
files: [
|
|
|
|
|
"pythonclassnamepage.cpp", "pythonclassnamepage.h",
|
|
|
|
|
"pythonclasswizard.h", "pythonclasswizard.cpp",
|
|
|
|
|
"pythonclasswizarddialog.h", "pythonclasswizarddialog.cpp",
|
|
|
|
|
"pythonfilewizard.h", "pythonfilewizard.cpp",
|
|
|
|
|
"pythonsourcegenerator.h", "pythonsourcegenerator.cpp"
|
|
|
|
|
]
|
|
|
|
|
}
|
2013-01-14 23:11:10 +04:00
|
|
|
}
|
|
|
|
|
|