2014-03-11 11:30:14 +01:00
|
|
|
import qbs 1.0
|
2012-02-09 14:30:09 +01:00
|
|
|
|
|
|
|
|
QtcPlugin {
|
2012-02-24 15:12:05 +01:00
|
|
|
name: "VcsBase"
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2014-02-10 13:02:33 +01:00
|
|
|
Depends { name: "Qt.widgets" }
|
|
|
|
|
Depends { name: "Aggregation" }
|
|
|
|
|
Depends { name: "CPlusPlus" }
|
|
|
|
|
Depends { name: "Utils" }
|
|
|
|
|
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
Depends { name: "ProjectExplorer" }
|
2017-06-30 14:50:28 +02:00
|
|
|
Depends { name: "DiffEditor" }
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2015-06-29 14:22:17 +02:00
|
|
|
pluginRecommends: [
|
2019-08-13 15:42:03 +02:00
|
|
|
"CodePaster",
|
2021-08-30 10:58:08 +02:00
|
|
|
"CppEditor"
|
2015-06-29 14:22:17 +02:00
|
|
|
]
|
|
|
|
|
|
2012-02-09 14:30:09 +01:00
|
|
|
files: [
|
|
|
|
|
"baseannotationhighlighter.cpp",
|
|
|
|
|
"baseannotationhighlighter.h",
|
|
|
|
|
"basevcseditorfactory.cpp",
|
|
|
|
|
"basevcseditorfactory.h",
|
|
|
|
|
"basevcssubmiteditorfactory.cpp",
|
|
|
|
|
"basevcssubmiteditorfactory.h",
|
|
|
|
|
"cleandialog.cpp",
|
|
|
|
|
"cleandialog.h",
|
|
|
|
|
"commonvcssettings.cpp",
|
|
|
|
|
"commonvcssettings.h",
|
2015-03-25 10:31:55 +02:00
|
|
|
"diffandloghighlighter.cpp",
|
|
|
|
|
"diffandloghighlighter.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"nicknamedialog.cpp",
|
|
|
|
|
"nicknamedialog.h",
|
|
|
|
|
"submiteditorfile.cpp",
|
|
|
|
|
"submiteditorfile.h",
|
2013-01-02 22:12:06 +02:00
|
|
|
"submiteditorwidget.cpp",
|
|
|
|
|
"submiteditorwidget.h",
|
|
|
|
|
"submitfieldwidget.cpp",
|
|
|
|
|
"submitfieldwidget.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"submitfilemodel.cpp",
|
|
|
|
|
"submitfilemodel.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"vcsbase.qrc",
|
2022-06-22 10:12:01 +02:00
|
|
|
"vcsbase_global.h", "vcsbasetr.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"vcsbaseclient.cpp",
|
|
|
|
|
"vcsbaseclient.h",
|
|
|
|
|
"vcsbaseclientsettings.cpp",
|
|
|
|
|
"vcsbaseclientsettings.h",
|
|
|
|
|
"vcsbaseconstants.h",
|
2017-06-30 14:50:28 +02:00
|
|
|
"vcsbasediffeditorcontroller.cpp",
|
|
|
|
|
"vcsbasediffeditorcontroller.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"vcsbaseeditor.cpp",
|
|
|
|
|
"vcsbaseeditor.h",
|
2016-10-23 04:42:43 +03:00
|
|
|
"vcsbaseeditorconfig.cpp",
|
|
|
|
|
"vcsbaseeditorconfig.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"vcsbaseplugin.cpp",
|
|
|
|
|
"vcsbaseplugin.h",
|
|
|
|
|
"vcsbasesubmiteditor.cpp",
|
|
|
|
|
"vcsbasesubmiteditor.h",
|
2022-08-01 10:49:13 +02:00
|
|
|
"vcscommand.cpp",
|
|
|
|
|
"vcscommand.h",
|
2020-02-03 17:17:10 +01:00
|
|
|
"vcsoutputformatter.cpp",
|
|
|
|
|
"vcsoutputformatter.h",
|
2014-08-26 00:02:47 +02:00
|
|
|
"vcsoutputwindow.cpp",
|
|
|
|
|
"vcsoutputwindow.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"vcsplugin.cpp",
|
|
|
|
|
"vcsplugin.h",
|
2015-01-20 12:30:35 +01:00
|
|
|
"wizard/vcsconfigurationpage.cpp",
|
|
|
|
|
"wizard/vcsconfigurationpage.h",
|
2015-05-05 13:03:43 +02:00
|
|
|
"wizard/vcscommandpage.cpp",
|
|
|
|
|
"wizard/vcscommandpage.h",
|
2015-01-19 15:42:22 +01:00
|
|
|
"wizard/vcsjsextension.cpp",
|
|
|
|
|
"wizard/vcsjsextension.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
]
|
2015-11-30 10:17:45 +01:00
|
|
|
|
2020-07-24 15:34:24 +02:00
|
|
|
cpp.defines: base.concat(qtc.testsEnabled ? ['SRC_DIR="' + project.ide_source_tree + '"'] : [])
|
2012-02-09 14:30:09 +01:00
|
|
|
}
|