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

11 lines
271 B
Groovy

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