forked from qt-creator/qt-creator
Quite a bit of special access from the outside, so LayoutBuilder is not really helpful here. Change-Id: I006b66e155c2abd46e7077add006fe31ec6b227d Reviewed-by: Orgad Shaneh <orgads@gmail.com>
79 lines
2.2 KiB
QML
79 lines
2.2 KiB
QML
import qbs 1.0
|
|
|
|
QtcPlugin {
|
|
name: "VcsBase"
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "Aggregation" }
|
|
Depends { name: "CPlusPlus" }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
Depends { name: "ProjectExplorer" }
|
|
Depends { name: "DiffEditor" }
|
|
|
|
pluginRecommends: [
|
|
"CodePaster",
|
|
"CppEditor"
|
|
]
|
|
|
|
files: [
|
|
"baseannotationhighlighter.cpp",
|
|
"baseannotationhighlighter.h",
|
|
"basevcseditorfactory.cpp",
|
|
"basevcseditorfactory.h",
|
|
"basevcssubmiteditorfactory.cpp",
|
|
"basevcssubmiteditorfactory.h",
|
|
"cleandialog.cpp",
|
|
"cleandialog.h",
|
|
"commonvcssettings.cpp",
|
|
"commonvcssettings.h",
|
|
"diffandloghighlighter.cpp",
|
|
"diffandloghighlighter.h",
|
|
"nicknamedialog.cpp",
|
|
"nicknamedialog.h",
|
|
"submiteditorfile.cpp",
|
|
"submiteditorfile.h",
|
|
"submiteditorwidget.cpp",
|
|
"submiteditorwidget.h",
|
|
"submitfieldwidget.cpp",
|
|
"submitfieldwidget.h",
|
|
"submitfilemodel.cpp",
|
|
"submitfilemodel.h",
|
|
"vcsbase.qrc",
|
|
"vcsbase_global.h", "vcsbasetr.h",
|
|
"vcsbaseclient.cpp",
|
|
"vcsbaseclient.h",
|
|
"vcsbaseclientsettings.cpp",
|
|
"vcsbaseclientsettings.h",
|
|
"vcsbaseconstants.h",
|
|
"vcsbasediffeditorcontroller.cpp",
|
|
"vcsbasediffeditorcontroller.h",
|
|
"vcsbaseeditor.cpp",
|
|
"vcsbaseeditor.h",
|
|
"vcsbaseeditorconfig.cpp",
|
|
"vcsbaseeditorconfig.h",
|
|
"vcsbaseplugin.cpp",
|
|
"vcsbaseplugin.h",
|
|
"vcsbasesubmiteditor.cpp",
|
|
"vcsbasesubmiteditor.h",
|
|
"vcscommand.cpp",
|
|
"vcscommand.h",
|
|
"vcsoutputformatter.cpp",
|
|
"vcsoutputformatter.h",
|
|
"vcsoutputwindow.cpp",
|
|
"vcsoutputwindow.h",
|
|
"vcsplugin.cpp",
|
|
"vcsplugin.h",
|
|
"wizard/vcsconfigurationpage.cpp",
|
|
"wizard/vcsconfigurationpage.h",
|
|
"wizard/vcscommandpage.cpp",
|
|
"wizard/vcscommandpage.h",
|
|
"wizard/vcsjsextension.cpp",
|
|
"wizard/vcsjsextension.h",
|
|
]
|
|
|
|
cpp.defines: base.concat(qtc.testsEnabled ? ['SRC_DIR="' + project.ide_source_tree + '"'] : [])
|
|
}
|