add qbs files

Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Joerg Bornemann
2012-02-09 14:30:09 +01:00
committed by hjk
parent 74da217204
commit ff92cdec43
60 changed files with 7252 additions and 0 deletions

102
src/plugins/git/git.qbs Normal file
View File

@@ -0,0 +1,102 @@
import qbs.base 1.0
import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "ScmGit"
Depends { name: "qt"; submodules: ['gui'] }
Depends { name: "utils" }
Depends { name: "extensionsystem" }
Depends { name: "aggregation" }
Depends { name: "Core" }
Depends { name: "TextEditor" }
Depends { name: "find" }
Depends { name: "VCSBase" }
Depends { name: "Locator" }
Depends { name: "cpp" }
cpp.includePaths: [
".",
"gitorious",
"..",
"../../libs",
buildDirectory
]
files: [
"branchadddialog.ui",
"branchdialog.ui",
"git.qrc",
"gitsubmitpanel.ui",
"remoteadditiondialog.ui",
"stashdialog.ui",
"annotationhighlighter.cpp",
"annotationhighlighter.h",
"branchadddialog.cpp",
"branchadddialog.h",
"branchdialog.cpp",
"branchdialog.h",
"branchmodel.cpp",
"branchmodel.h",
"changeselectiondialog.cpp",
"changeselectiondialog.h",
"changeselectiondialog.ui",
"clonewizard.cpp",
"clonewizard.h",
"clonewizardpage.cpp",
"clonewizardpage.h",
"commitdata.cpp",
"commitdata.h",
"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",
"gitutils.cpp",
"gitutils.h",
"gitversioncontrol.cpp",
"gitversioncontrol.h",
"remotedialog.cpp",
"remotedialog.h",
"remotedialog.ui",
"remotemodel.cpp",
"remotemodel.h",
"settingspage.cpp",
"settingspage.h",
"settingspage.ui",
"stashdialog.cpp",
"stashdialog.h"
]
Group {
files: [
"gitorious/gitorioushostwidget.ui",
"gitorious/gitoriousprojectwidget.ui",
"gitorious/gitoriousrepositorywizardpage.ui",
"gitorious/gitorious.cpp",
"gitorious/gitorious.h",
"gitorious/gitoriousclonewizard.cpp",
"gitorious/gitoriousclonewizard.h",
"gitorious/gitorioushostwidget.cpp",
"gitorious/gitorioushostwidget.h",
"gitorious/gitorioushostwizardpage.cpp",
"gitorious/gitorioushostwizardpage.h",
"gitorious/gitoriousprojectwidget.cpp",
"gitorious/gitoriousprojectwidget.h",
"gitorious/gitoriousprojectwizardpage.cpp",
"gitorious/gitoriousprojectwizardpage.h",
"gitorious/gitoriousrepositorywizardpage.cpp",
"gitorious/gitoriousrepositorywizardpage.h"
]
}
}