2013-01-14 23:11:10 +04:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "PythonEditor"
|
|
|
|
|
|
2013-03-08 17:34:27 +01:00
|
|
|
Depends { name: "Qt.widgets" }
|
2013-01-14 23:11:10 +04:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
Depends { name: "CppTools" }
|
|
|
|
|
Depends { name: "cpp" }
|
|
|
|
|
|
2013-03-27 20:16:05 +01:00
|
|
|
cpp.defines: base.concat(["PYEDITOR_LIBRARY"])
|
2013-01-14 23:11:10 +04:00
|
|
|
|
|
|
|
|
files: [
|
|
|
|
|
"pythoneditor.cpp",
|
|
|
|
|
"pythoneditor.h",
|
|
|
|
|
"pythoneditor.mimetypes.xml",
|
|
|
|
|
"pythoneditor_global.h",
|
|
|
|
|
"pythoneditorconstants.h",
|
|
|
|
|
"pythoneditorfactory.cpp",
|
|
|
|
|
"pythoneditorfactory.h",
|
|
|
|
|
"pythoneditorfeatures.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",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|