diff --git a/simulation/halsim_gui/build.gradle b/simulation/halsim_gui/build.gradle index 50fb9b69c4..5ac68ea2f5 100644 --- a/simulation/halsim_gui/build.gradle +++ b/simulation/halsim_gui/build.gradle @@ -23,6 +23,10 @@ if (!project.hasProperty('onlylinuxathena') && !project.hasProperty('onlylinuxra binaries { all { nativeUtils.useRequiredLibrary(it, 'imgui_static') + if (it.targetPlatform.name == nativeUtils.wpi.platforms.roborio || it.targetPlatform.name == nativeUtils.wpi.platforms.raspbian || it.targetPlatform.name == nativeUtils.wpi.platforms.aarch64bionic) { + it.buildable = false + return + } if (it.targetPlatform.operatingSystem.isWindows()) { it.linker.args << 'Gdi32.lib' << 'Shell32.lib' } else if (it.targetPlatform.operatingSystem.isMacOsX()) {