[build] Remove RoboRIO specializations from build system (#7670)

This commit is contained in:
Thad House
2025-01-13 11:23:54 -08:00
committed by GitHub
parent 666d1638ce
commit 09a6bc9a25
31 changed files with 25 additions and 139 deletions

View File

@@ -36,7 +36,7 @@ model {
}
binaries.all {
lib project: ':thirdparty:imgui_suite', library: 'imguiSuite', linkage: 'static'
if (it.targetPlatform.name == nativeUtils.wpi.platforms.roborio || it.targetPlatform.name == nativeUtils.wpi.platforms.systemcore) {
if (it.targetPlatform.name == nativeUtils.wpi.platforms.systemcore) {
it.buildable = false
return
}
@@ -105,7 +105,7 @@ model {
}
binaries {
all {
if (it.targetPlatform.name == nativeUtils.wpi.platforms.roborio || it.targetPlatform.name == nativeUtils.wpi.platforms.systemcore) {
if (it.targetPlatform.name == nativeUtils.wpi.platforms.systemcore) {
it.buildable = false
return
}