blob: 3f06ff839a5e1a4e8524e1c74ccc8a11438ee08f [file] [log] [blame]
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",
],
)