Files
allwpilib/shared/catch2.gradle

11 lines
264 B
Groovy
Raw Normal View History

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