mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
7 lines
286 B
Python
7 lines
286 B
Python
|
|
def robotpy_compatibility_select():
|
||
|
|
return select({
|
||
|
|
"@bazel_tools//src/conditions:windows": ["@platforms//:incompatible"],
|
||
|
|
"@rules_bzlmodrio_toolchains//constraints/is_systemcore:systemcore": ["@platforms//:incompatible"],
|
||
|
|
"//conditions:default": [],
|
||
|
|
})
|