forked from qt-creator/qt-creator
Change-Id: Ic16eae2def11343ef7be5ce8378d24b5fd11a386 Reviewed-by: Petar Perisin <petar.perisin@gmail.com> Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
116 lines
3.1 KiB
QML
116 lines
3.1 KiB
QML
import qbs.base 1.0
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
QtcPlugin {
|
|
name: "Git"
|
|
|
|
Depends { name: "Qt"; submodules: ["widgets", "network"] }
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
Depends { name: "Find" }
|
|
Depends { name: "VcsBase" }
|
|
Depends { name: "Locator" }
|
|
|
|
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",
|
|
"clonewizard.cpp",
|
|
"clonewizard.h",
|
|
"clonewizardpage.cpp",
|
|
"clonewizardpage.h",
|
|
"commitdata.cpp",
|
|
"commitdata.h",
|
|
"git.qrc",
|
|
"gitclient.cpp",
|
|
"gitclient.h",
|
|
"gitconstants.h",
|
|
"giteditor.cpp",
|
|
"giteditor.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 {
|
|
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 {
|
|
prefix: "gerrit/"
|
|
files: [
|
|
"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",
|
|
]
|
|
}
|
|
}
|