-
Notifications
You must be signed in to change notification settings - Fork 0
/
releases.gradle
187 lines (163 loc) · 4.54 KB
/
releases.gradle
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
task userSharedZip(type: Zip) {
description = 'Creates user zip of libraries, with shared c++ libs.'
group = 'WPILib'
destinationDir = releaseDir
baseName = libraryName
classifier = 'usershared'
duplicatesStrategy = 'exclude'
// Copy include files from cpp project
from(file(cppInclude)) {
include '**/*.h'
into '/cpp/include'
}
// Copy shared binaries from cpp project
project(':arm:cpp').model {
binaries {
withType(SharedLibraryBinarySpec) { binary ->
from(binary.sharedLibraryFile) {
include '*.so'
into '/cpp/lib'
}
def debugFile = new File(binary.sharedLibraryFile.absolutePath + ".debug")
from(debugFile) {
include '*.so.debug'
into '/cpp/lib'
}
}
}
}
// copy driver include
from (file(driverInclude)) {
include '**/*.h'
into '/cpp/include'
}
// Copy included driver library headers
from(file(driverLibraryInclude)) {
include '**/*.h'
into '/cpp/include'
}
// Copy included driver library binaries
from(file(driverLibraryLib)) {
include '*.so*'
include '*.a*'
into '/cpp/lib'
}
// Copy included driver library headers
from(file(cppLibraryInclude)) {
include '**/*.h'
into '/cpp/include'
}
// Copy included driver library binaries
from(file(cppLibraryLib)) {
include '*.so*'
include '*.a*'
into '/cpp/lib'
}
// Include cpp sources if set
if (includeCppSources) {
from(file(cppSrc)) {
include '**/*.cpp'
include '**/*.h'
into "/cpp/src/$libraryName"
}
}
// Include driver sources if set
if (includeDriverSources) {
from(file(driverSrc)) {
include '**/*.cpp'
include '**/*.h'
into "/cpp/src/$libraryName"
}
}
}
task userStaticZip(type: Zip) {
description = 'Creates user zip of libraries, with static c++ libs.'
group = 'WPILib'
destinationDir = releaseDir
baseName = libraryName
classifier = 'userstatic'
duplicatesStrategy = 'exclude'
// Copy include files from cpp project
from(file(cppInclude)) {
include '**/*.h'
into '/cpp/include'
}
// Copy static binaries from cpp project
project(':arm:cpp').model {
binaries {
withType(StaticLibraryBinarySpec) { binary ->
from(binary.staticLibraryFile) {
include '*.a'
into '/cpp/lib'
}
}
}
}
// copy driver include
from (file(driverInclude)) {
include '**/*.h'
into '/cpp/include'
}
// Copy included driver library headers
from(file(driverLibraryInclude)) {
include '**/*.h'
into '/cpp/include'
}
// Copy included driver library binaries
from(file(driverLibraryLib)) {
include '*.so*'
include '*.a*'
into '/cpp/lib'
}
// Copy included driver library headers
from(file(cppLibraryInclude)) {
include '**/*.h'
into '/cpp/include'
}
// Copy included driver library binaries
from(file(cppLibraryLib)) {
include '*.so*'
include '*.a*'
into '/cpp/lib'
}
// Include cpp sources if set
if (includeCppSources) {
from(file(cppSrc)) {
include '**/*.cpp'
include '**/*.h'
into "/cpp/src/$libraryName"
}
}
// Include driver sources if set
if (includeDriverSources) {
from(file(driverSrc)) {
include '**/*.cpp'
include '**/*.h'
into "/cpp/src/$libraryName"
}
}
}
task cppSources(type: Zip) {
description = 'Creates a zip of cpp sources.'
group = 'WPILib'
destinationDir = releaseDir
baseName = libraryName
classifier = 'cppsources'
duplicatesStrategy = 'exclude'
from(cppSrc) {
into 'src'
}
from(cppInclude) {
into 'include'
}
}
project(':arm:cpp').tasks.whenTaskAdded { task ->
def name = task.name.toLowerCase()
if (name.contains("sharedlibrary") || name.contains("staticlibrary")) {
userSharedZip.dependsOn task
userStaticZip.dependsOn task
}
}
build.dependsOn userSharedZip
build.dependsOn userStaticZip
build.dependsOn cppSources