[apriltag, build] Update native utils, add apriltag impl and JNI (#4733)

Co-authored-by: Peter Johnson <johnson.peter@gmail.com>
This commit is contained in:
Thad House
2022-11-30 00:16:29 -08:00
committed by GitHub
parent 53875419a1
commit 5e74ff26d8
17 changed files with 794 additions and 36 deletions

13
shared/imgui.gradle Normal file
View File

@@ -0,0 +1,13 @@
nativeUtils {
nativeDependencyContainer {
imgui(getNativeDependencyTypeClass('WPIStaticMavenDependency')) {
groupId = "edu.wpi.first.thirdparty.frc2023"
artifactId = "imgui"
headerClassifier = "headers"
sourceClassifier = "sources"
ext = "zip"
version = '1.88-12'
targetPlatforms.addAll(nativeUtils.wpi.platforms.allPlatforms)
}
}
}