Files
allwpilib/epilogue-runtime/build.gradle
2025-09-25 22:17:00 -07:00

19 lines
402 B
Groovy

ext {
useJava = true
useCpp = false
baseId = 'epilogue-runtime'
groupId = 'edu.wpi.first.epilogue'
devMain = ''
}
apply from: "${rootDir}/shared/java/javacommon.gradle"
dependencies {
api(project(':datalog'))
api(project(':ntcore'))
api(project(':wpiutil'))
api(project(':wpiunits'))
testImplementation(project(':wpimath')) // for convenient protobuf types
}