Files
allwpilib/shared/googletest.gradle

11 lines
271 B
Groovy
Raw Normal View History

model {
binaries {
withType(GoogleTestTestSuiteBinarySpec).all {
2025-09-08 17:14:23 -04:00
if (it.name.contains('Catch2')) {
return;
}
lib project: ':thirdparty:googletest', library: 'googletest', linkage: 'static'
}
}
}