Files
qt-creator/src/plugins/pythoneditor/pythoneditor.qbs

48 lines
1.4 KiB
QML
Raw Normal View History

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" }
files: [
"pythoneditor.cpp",
"pythoneditor.h",
"pythoneditor_global.h",
"pythoneditorconstants.h",
"pythoneditorfactory.cpp",
"pythoneditorfactory.h",
"pythoneditorplugin.cpp",
"pythoneditorplugin.h",
"pythoneditorplugin.qrc",
"pythoneditorwidget.cpp",
"pythoneditorwidget.h",
"tools/lexical/sourcecodestream.h",
"tools/lexical/pythonscanner.h",
"tools/lexical/pythonformattoken.h",
"tools/lexical/pythonscanner.cpp",
"tools/pythonhighlighter.h",
"tools/pythonindenter.cpp",
"tools/pythonhighlighter.cpp",
"tools/pythonindenter.h",
"wizard/pythonfilewizard.h",
"wizard/pythonfilewizard.cpp",
"wizard/pythonclasswizard.h",
"wizard/pythonclassnamepage.h",
"wizard/pythonclasswizarddialog.h",
"wizard/pythonsourcegenerator.h",
"wizard/pythonclasswizarddialog.cpp",
"wizard/pythonclasswizard.cpp",
"wizard/pythonclassnamepage.cpp",
"wizard/pythonsourcegenerator.cpp"
]
}