Files
allwpilib/shared/ceres.gradle

15 lines
516 B
Groovy
Raw Normal View History

nativeUtils {
nativeDependencyContainer {
ceres(getNativeDependencyTypeClass('WPIStaticMavenDependency')) {
groupId = "edu.wpi.first.thirdparty.frc2026.ceres"
artifactId = "ceres-cpp"
headerClassifier = "headers"
sourceClassifier = "sources"
ext = "zip"
version = '2.2-1'
targetPlatforms.addAll(nativeUtils.wpi.platforms.desktopPlatforms)
targetPlatforms.addAll("linuxarm32", "linuxarm64")
}
}
}