1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import qbs.base 1.0
import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "Subversion"
Depends { name: "Qt.widgets" }
Depends { name: "Core" }
Depends { name: "TextEditor" }
Depends { name: "Find" }
Depends { name: "VcsBase" }
Depends { name: "Locator" }
Depends { name: "cpp" }
cpp.includePaths: [
"..",
"../../libs",
buildDirectory
]
files: [
"annotationhighlighter.cpp",
"annotationhighlighter.h",
"checkoutwizard.cpp",
"checkoutwizard.h",
"checkoutwizardpage.cpp",
"checkoutwizardpage.h",
"settingspage.cpp",
"settingspage.h",
"settingspage.ui",
"subversion.qrc",
"subversionconstants.h",
"subversioncontrol.cpp",
"subversioncontrol.h",
"subversioneditor.cpp",
"subversioneditor.h",
"subversionplugin.cpp",
"subversionplugin.h",
"subversionsettings.cpp",
"subversionsettings.h",
"subversionsubmiteditor.cpp",
"subversionsubmiteditor.h",
]
}
|