forked from qt-creator/qt-creator
It became much larger than GerritParameters. No reason to keep them together. Change-Id: Ib125f124940e95b0e15616d150f6b44fdb428284 Reviewed-by: André Hartmann <aha_1980@gmx.de>
104 lines
2.7 KiB
QML
104 lines
2.7 KiB
QML
import qbs 1.0
|
|
|
|
QtcPlugin {
|
|
name: "Git"
|
|
|
|
Depends { name: "Qt"; submodules: ["widgets", "network"] }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
Depends { name: "VcsBase" }
|
|
Depends { name: "DiffEditor" }
|
|
|
|
cpp.defines: base.concat(["QT_NO_FOREACH"])
|
|
|
|
files: [
|
|
"annotationhighlighter.cpp",
|
|
"annotationhighlighter.h",
|
|
"branchadddialog.cpp",
|
|
"branchadddialog.h",
|
|
"branchadddialog.ui",
|
|
"branchcheckoutdialog.cpp",
|
|
"branchcheckoutdialog.h",
|
|
"branchcheckoutdialog.ui",
|
|
"branchdialog.cpp",
|
|
"branchdialog.h",
|
|
"branchdialog.ui",
|
|
"branchmodel.cpp",
|
|
"branchmodel.h",
|
|
"changeselectiondialog.cpp",
|
|
"changeselectiondialog.h",
|
|
"changeselectiondialog.ui",
|
|
"commitdata.cpp",
|
|
"commitdata.h",
|
|
"git.qrc",
|
|
"gitclient.cpp",
|
|
"gitclient.h",
|
|
"gitconstants.h",
|
|
"giteditor.cpp",
|
|
"giteditor.h",
|
|
"gitgrep.cpp",
|
|
"gitgrep.h",
|
|
"githighlighters.cpp",
|
|
"githighlighters.h",
|
|
"gitplugin.cpp",
|
|
"gitplugin.h",
|
|
"gitsettings.cpp",
|
|
"gitsettings.h",
|
|
"gitsubmiteditor.cpp",
|
|
"gitsubmiteditor.h",
|
|
"gitsubmiteditorwidget.cpp",
|
|
"gitsubmiteditorwidget.h",
|
|
"gitsubmitpanel.ui",
|
|
"gitutils.cpp",
|
|
"gitutils.h",
|
|
"gitversioncontrol.cpp",
|
|
"gitversioncontrol.h",
|
|
"logchangedialog.cpp",
|
|
"logchangedialog.h",
|
|
"mergetool.cpp",
|
|
"mergetool.h",
|
|
"remoteadditiondialog.ui",
|
|
"remotedialog.cpp",
|
|
"remotedialog.h",
|
|
"remotedialog.ui",
|
|
"remotemodel.cpp",
|
|
"remotemodel.h",
|
|
"settingspage.cpp",
|
|
"settingspage.h",
|
|
"settingspage.ui",
|
|
"stashdialog.cpp",
|
|
"stashdialog.h",
|
|
"stashdialog.ui",
|
|
]
|
|
|
|
Group {
|
|
name: "Gerrit"
|
|
prefix: "gerrit/"
|
|
files: [
|
|
"authenticationdialog.cpp",
|
|
"authenticationdialog.h",
|
|
"authenticationdialog.ui",
|
|
"branchcombobox.cpp",
|
|
"branchcombobox.h",
|
|
"gerritdialog.cpp",
|
|
"gerritdialog.h",
|
|
"gerritdialog.ui",
|
|
"gerritmodel.cpp",
|
|
"gerritmodel.h",
|
|
"gerritoptionspage.cpp",
|
|
"gerritoptionspage.h",
|
|
"gerritparameters.cpp",
|
|
"gerritparameters.h",
|
|
"gerritplugin.cpp",
|
|
"gerritplugin.h",
|
|
"gerritserver.cpp",
|
|
"gerritserver.h",
|
|
"gerritpushdialog.cpp",
|
|
"gerritpushdialog.h",
|
|
"gerritpushdialog.ui",
|
|
]
|
|
}
|
|
}
|