Files
allwpilib/shared/googletest.gradle
Thad House a6b0e9b856 Only disable execution of cross compile google tests (#1741)
Still build them and link them, just don't execute them.

Google test is still disabled completely for the HAL and wpilibc.
2019-06-29 21:31:27 -07:00

8 lines
163 B
Groovy

model {
binaries {
withType(GoogleTestTestSuiteBinarySpec).all {
nativeUtils.useRequiredLibrary(it, 'googletest_static')
}
}
}