forked from qt-creator/qt-creator
Change-Id: I7f4758119623559cec4f1b91a305d3ad55fe55dc Reviewed-by: Orgad Shaneh <orgads@gmail.com>
92 lines
2.3 KiB
QML
92 lines
2.3 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",
|
|
"branchcheckoutdialog.cpp",
|
|
"branchcheckoutdialog.h",
|
|
"branchmodel.cpp",
|
|
"branchmodel.h",
|
|
"branchview.cpp",
|
|
"branchview.h",
|
|
"changeselectiondialog.cpp",
|
|
"changeselectiondialog.h",
|
|
"commitdata.cpp",
|
|
"commitdata.h",
|
|
"git.qrc",
|
|
"git_global.h", "gittr.h",
|
|
"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",
|
|
"gitutils.cpp",
|
|
"gitutils.h",
|
|
"logchangedialog.cpp",
|
|
"logchangedialog.h",
|
|
"mergetool.cpp",
|
|
"mergetool.h",
|
|
"remotedialog.cpp",
|
|
"remotedialog.h",
|
|
"remotemodel.cpp",
|
|
"remotemodel.h",
|
|
"stashdialog.cpp",
|
|
"stashdialog.h",
|
|
]
|
|
|
|
Group {
|
|
name: "Gerrit"
|
|
prefix: "gerrit/"
|
|
files: [
|
|
"authenticationdialog.cpp",
|
|
"authenticationdialog.h",
|
|
"branchcombobox.cpp",
|
|
"branchcombobox.h",
|
|
"gerritdialog.cpp",
|
|
"gerritdialog.h",
|
|
"gerritmodel.cpp",
|
|
"gerritmodel.h",
|
|
"gerritoptionspage.cpp",
|
|
"gerritoptionspage.h",
|
|
"gerritparameters.cpp",
|
|
"gerritparameters.h",
|
|
"gerritplugin.cpp",
|
|
"gerritplugin.h",
|
|
"gerritremotechooser.cpp",
|
|
"gerritremotechooser.h",
|
|
"gerritserver.cpp",
|
|
"gerritserver.h",
|
|
"gerritpushdialog.cpp",
|
|
"gerritpushdialog.h",
|
|
"gerritpushdialog.ui",
|
|
]
|
|
}
|
|
}
|