Export pb files from wpimath

This commit is contained in:
Thad House
2023-11-23 21:47:06 -08:00
committed by Peter Johnson
parent c80b2d2017
commit 2aba97c610
2 changed files with 22 additions and 1 deletions

View File

@@ -9,5 +9,5 @@ repositories {
}
}
dependencies {
implementation "edu.wpi.first:native-utils:2024.3.2"
implementation "edu.wpi.first:native-utils:2024.4.0"
}

View File

@@ -42,6 +42,27 @@ model {
}
}
nativeUtils.exportsConfigs {
wpimath {
x64ExcludeSymbols = [
'_CT??_R0?AV_System_error',
'_CT??_R0?AVexception',
'_CT??_R0?AVfailure',
'_CT??_R0?AVruntime_error',
'_CT??_R0?AVsystem_error',
'_CTA5?AVfailure',
'_TI5?AVfailure',
'_CT??_R0?AVout_of_range',
'_CTA3?AVout_of_range',
'_TI3?AVout_of_range',
'_CT??_R0?AVbad_cast'
]
objectFilterClosure = { file ->
return file.name.endsWith('.pb.obj')
}
}
}
dependencies {
api project(":wpiunits")
api "org.ejml:ejml-simple:0.43.1"