Files
allwpilib/shared/catch2.gradle
2025-09-08 15:14:23 -06:00

11 lines
264 B
Groovy

model {
binaries {
withType(GoogleTestTestSuiteBinarySpec).all {
if (!it.name.contains('Catch2')) {
return;
}
lib project: ':thirdparty:catch2', library: 'catch2', linkage: 'static'
}
}
}