forked from qt-creator/qt-creator
Change-Id: Iecf32122df41f304ec6df538bb0dd8a263238a86 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
124 lines
3.3 KiB
QML
124 lines
3.3 KiB
QML
import qbs 1.0
|
|
|
|
import QtcPlugin
|
|
|
|
QtcPlugin {
|
|
name: "Git"
|
|
|
|
Depends { name: "Qt"; submodules: ["widgets", "network"] }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
Depends { name: "VcsBase" }
|
|
Depends { name: "DiffEditor" }
|
|
|
|
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",
|
|
"clonewizard.cpp",
|
|
"clonewizard.h",
|
|
"clonewizardpage.cpp",
|
|
"clonewizardpage.h",
|
|
"commitdata.cpp",
|
|
"commitdata.h",
|
|
"git.qrc",
|
|
"gitclient.cpp",
|
|
"gitclient.h",
|
|
"gitconstants.h",
|
|
"giteditor.cpp",
|
|
"giteditor.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: "Gitorious"
|
|
prefix: "gitorious/"
|
|
files: [
|
|
"gitorious.cpp",
|
|
"gitorious.h",
|
|
"gitoriousclonewizard.cpp",
|
|
"gitoriousclonewizard.h",
|
|
"gitorioushostwidget.cpp",
|
|
"gitorioushostwidget.h",
|
|
"gitorioushostwidget.ui",
|
|
"gitorioushostwizardpage.cpp",
|
|
"gitorioushostwizardpage.h",
|
|
"gitoriousprojectwidget.cpp",
|
|
"gitoriousprojectwidget.h",
|
|
"gitoriousprojectwidget.ui",
|
|
"gitoriousprojectwizardpage.cpp",
|
|
"gitoriousprojectwizardpage.h",
|
|
"gitoriousrepositorywizardpage.cpp",
|
|
"gitoriousrepositorywizardpage.h",
|
|
"gitoriousrepositorywizardpage.ui",
|
|
]
|
|
}
|
|
|
|
Group {
|
|
name: "Gerrit"
|
|
prefix: "gerrit/"
|
|
files: [
|
|
"branchcombobox.cpp",
|
|
"branchcombobox.h",
|
|
"gerritdialog.cpp",
|
|
"gerritdialog.h",
|
|
"gerritmodel.cpp",
|
|
"gerritmodel.h",
|
|
"gerritoptionspage.cpp",
|
|
"gerritoptionspage.h",
|
|
"gerritparameters.cpp",
|
|
"gerritparameters.h",
|
|
"gerritplugin.cpp",
|
|
"gerritplugin.h",
|
|
"gerritpushdialog.cpp",
|
|
"gerritpushdialog.h",
|
|
"gerritpushdialog.ui",
|
|
]
|
|
}
|
|
}
|