Default to building for all platforms

This commit is contained in:
Thad House 2022-11-03 20:59:11 -07:00
parent 1307c38642
commit ddd5cfb58e

View File

@ -22,17 +22,17 @@ nativeUtils.wpi.addWarningsAsErrors()
nativeUtils.setSinglePrintPerPlatform()
model {
components {
all {
targetPlatform nativeUtils.wpi.platforms.roborio
}
}
// Uncomment this, and remove above lines to enable builds for all platforms
// Uncomment this, and remove lines below it to enable builds for just roborio
// components {
// all {
// nativeUtils.useAllPlatforms(it)
// targetPlatform nativeUtils.wpi.platforms.roborio
// }
// }
components {
all {
nativeUtils.useAllPlatforms(it)
}
}
binaries {
withType(NativeBinarySpec).all {
nativeUtils.usePlatformArguments(it)