forked from qt-creator/qt-creator
Provides better structuring of source files. Change-Id: Ic2d0094312bb7c8da01a1f38270564407fdbefce Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
53 lines
1.5 KiB
QML
53 lines
1.5 KiB
QML
import qbs.base 1.0
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
QtcPlugin {
|
|
name: "PythonEditor"
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
Depends { name: "CppTools" }
|
|
Depends { name: "QtSupport" }
|
|
Depends { name: "ProjectExplorer" }
|
|
|
|
Group {
|
|
name: "General"
|
|
files: [
|
|
"pythoneditor.cpp", "pythoneditor.h",
|
|
"pythoneditor_global.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",
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
|