generated from wpilibsuite/vendor-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
187 lines (165 loc) · 5.5 KB
/
build.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
plugins {
id 'cpp'
id 'java'
id 'edu.wpi.first.wpilib.repositories.WPILibRepositoriesPlugin' version '2020.2'
id 'edu.wpi.first.NativeUtils' version '2024.7.0'
id 'edu.wpi.first.GradleJni' version '1.1.0'
id 'edu.wpi.first.GradleVsCode' version '2.1.0'
}
repositories {
mavenCentral()
maven {
url = uri("${project.getRootDir()}/grapplefrcdriver/target/zips")
}
}
if (project.hasProperty('releaseMode')) {
wpilibRepositories.addAllReleaseRepositories(project)
} else {
wpilibRepositories.addAllDevelopmentRepositories(project)
}
// Apply C++ configuration
apply from: 'config.gradle'
// Apply Java configuration
dependencies {
implementation 'edu.wpi.first.cscore:cscore-java:2024.+'
implementation 'edu.wpi.first.cameraserver:cameraserver-java:2024.+'
implementation 'edu.wpi.first.ntcore:ntcore-java:2024.+'
implementation 'edu.wpi.first.wpilibj:wpilibj-java:2024.+'
implementation 'edu.wpi.first.wpiutil:wpiutil-java:2024.+'
implementation 'edu.wpi.first.wpimath:wpimath-java:2024.+'
implementation 'edu.wpi.first.wpiunits:wpiunits-java:2024.+'
implementation 'edu.wpi.first.hal:hal-java:2024.+'
implementation "org.ejml:ejml-simple:0.43.1"
implementation "com.fasterxml.jackson.core:jackson-annotations:2.12.4"
implementation "com.fasterxml.jackson.core:jackson-core:2.12.4"
implementation "com.fasterxml.jackson.core:jackson-databind:2.12.4"
implementation 'edu.wpi.first.thirdparty.frc2024.opencv:opencv-java:4.8.0-2'
}
// Set up exports properly
nativeUtils {
exportsConfigs {
// Main library is just default empty. This will export everything
grapplefrc {
}
}
nativeDependencyContainer {
libgrapplefrcdriver(getNativeDependencyTypeClass('WPISharedMavenDependency')) {
version = "2024.3.1"
groupId = "au.grapplerobotics"
artifactId = "libgrapplefrcdriver"
ext = "zip"
headerClassifier = "headers"
targetPlatforms = [
"windowsx86-64",
"windowsarm64",
"linuxarm64",
"linuxx86-64",
"linuxathena",
"linuxarm32",
"osxuniversal"
]
}
}
}
def rust_triple(targetPlatform) {
def platformName = targetPlatform.name
if (platformName == "linuxathena") {
return "arm-unknown-linux-gnueabi"
} else if (platformName == "linuxarm32") {
return "arm-unknown-linux-gnueabihf"
} else if (platformName == "linuxarm64") {
return "aarch64-unknown-linux-gnu"
} else if (platformName == "linuxx86-64") {
return "x86_64-unknown-linux-gnu"
} else if (platformName == "osxuniversal") {
return "x86_64-apple-darwin"
} else if (platformName == "windowsx86-64") {
return "x86_64-pc-windows-msvc"
} else if (platformName == "windowsarm64") {
return "aarch64-pc-windows-msvc"
} else {
println "Unknown target platform $platformName"
return null
}
}
def all_binaries = []
model {
components {
grapplefrc(NativeLibrarySpec) {
sources {
cpp {
source {
srcDirs 'src/main/native/cpp'
include '**/*.cpp'
}
exportedHeaders {
srcDirs 'src/main/native/include'
}
}
}
nativeUtils.useRequiredLibrary(it, 'wpilib_shared', 'libgrapplefrcdriver')
}
}
}
import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
def sets = [
"hal_shared", "wpiutil_shared"
]
task updateRustLibs() {
doLast {
sets.each { set -> {
nativeUtils.nativeDependencyContainer.getByName(set, libset -> {
def debugBuildType = nativeUtils.buildTypes.named('debug').get()
def releaseBuildType = nativeUtils.buildTypes.named('release').get()
for (targetPlatform in nativeUtils.platforms) {
def resolved = libset.resolveNativeDependency(targetPlatform, releaseBuildType, java.util.Optional.empty()).get()
def resolvedDebug = libset.resolveNativeDependency(targetPlatform, debugBuildType, java.util.Optional.empty()).get()
def headers = []
def libs = []
resolved.getLinkFiles().forEach({ f -> libs += f })
resolvedDebug.getLinkFiles().forEach({ f -> libs += f })
resolved.getIncludeRoots().forEach({ f -> headers += f })
def triple = rust_triple(targetPlatform)
def outdir = project.file("grapplefrcdriver/buildlibs/${triple}")
new File(outdir, "libs").mkdirs()
new File(outdir, "headers").mkdirs()
libs.forEach({ lf ->
copy {
from lf
into "${outdir}/libs"
}
})
headers.forEach({ hd ->
copy {
from hd
into "${outdir}/headers"
}
})
if (targetPlatform.name == "osxuniversal") {
// 2nd copy needed for arm
outdir = project.file("grapplefrcdriver/buildlibs/aarch64-apple-darwin")
new File(outdir, "libs").mkdirs()
new File(outdir, "headers").mkdirs()
libs.forEach({ lf ->
copy {
from lf
into "${outdir}/libs"
}
})
headers.forEach({ hd ->
copy {
from hd
into "${outdir}/headers"
}
})
}
}
})
}}
}
}
apply from: 'publish.gradle'
wrapper {
gradleVersion '8.5'
}