| genrule( |
| name = "wpilib_version", |
| outs = ["WPILibVersion.cc"], |
| cmd = "\n".join([ |
| "cat > \"$@\" << EOF", |
| "// Autogenerated file! Do not manually edit this file.", |
| "#include \"frc971/wpilib/ahal/WPILibVersion.h\"", |
| "const char *WPILibVersion = \"2018-frc971\";", |
| "EOF", |
| ]), |
| ) |
| |
| cc_library( |
| name = "ahal", |
| srcs = glob(["*.cc"]) + [":wpilib_version"], |
| hdrs = glob(["*.h"]), |
| restricted_to = ["//tools:roborio"], |
| visibility = ["//third_party:__pkg__"], |
| deps = [ |
| "//aos:make_unique", |
| "//aos/logging", |
| "//third_party:wpilib_hal", |
| ], |
| ) |