forked from scanse/sweep-sdk
-
Notifications
You must be signed in to change notification settings - Fork 3
/
installer.gradle
186 lines (164 loc) · 5.06 KB
/
installer.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
ext.setupDir = file("${rootDir}/setup")
task copyForSetup(type: Copy) {
description = 'Creates user zip of libraries, with static c++ libs.'
group = 'WPILib'
destinationDir = setupDir
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 java jar
if (useDriver) {
def javaProject = project(':arm:driver')
dependsOn javaProject.jar
// Copy project java binary
from (file(javaProject.jar.archivePath)) {
into '/java/lib'
}
} else {
def javaProject = project(':arm:cpp')
dependsOn javaProject.jar
// Copy project java binary
from (file(javaProject.jar.archivePath)) {
into '/java/lib'
}
}
// Copy shared binaries from driver project for java
if (useDriver) {
project(':arm:driver').model {
binaries {
if (!combineStaticLibs) {
withType(StaticLibraryBinarySpec) { binary ->
from(binary.staticLibraryFile) {
include '*.a'
into '/cpp/lib'
}
}
}
withType(SharedLibraryBinarySpec) { binary ->
from(binary.sharedLibraryFile) {
include '*.so'
into '/java/lib'
}
def debugFile = new File(binary.sharedLibraryFile.absolutePath + ".debug")
from(debugFile) {
include '*.so.debug'
into '/java/lib'
}
}
}
}
}
// If not embedded java, include java libs
if (!embedJavaLibraries) {
from(file(javaLibraryLoc)) {
include '*.jar'
include '*.so'
include '*.so.debug'
into '/java/lib'
}
}
// Include java sources if set
if (includeJavaSources) {
dependsOn javaSourceJar
from (file(javaSourceJar.archivePath)) {
into '/java/src'
}
}
// Include java javadoc if set
if (includeJavaJavadoc) {
dependsOn javaJavadocJar
from (file(javaJavadocJar.archivePath)) {
into '/java/src'
}
}
// 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"
}
}
}
project(':arm:cpp').tasks.whenTaskAdded { task ->
def name = task.name.toLowerCase()
if (name.contains("sharedlibrary") || name.contains("staticlibrary")) {
copyForSetup.dependsOn task
}
}
task windowsZip(type: Copy) {
dependsOn userStaticZip
destinationDir = file("${setupDir}/output")
from (userStaticZip.outputs.files.singleFile) {
rename("(.*).zip", "Sweep_SDK_Libs_${(WPILibVersion.version).replace(".", "_")}.zip")
}
}
// https://github.com/syncany/syncany/tree/master/gradle/innosetup
// Skeleton code found here
task installer() {
dependsOn copyForSetup
doLast {
delete "${setupDir}/setup.iss"
copy {
from("${rootDir}/setup.iss.skel")
rename("setup.iss.skel", "setup.iss")
expand([
applicationVersion: "${WPILibVersion.version}"
])
into(setupDir)
}
exec {
workingDir rootDir
commandLine "iscc ${setupDir}/setup.iss".split()
}
}
}