commit | c0cfb13e68a638bcfccbeb97e8ac3e660d209e42 | [log] [tgz] |
---|---|---|
author | Campbell Crowley <mail@campbellcrowley.com> | Wed Dec 30 20:58:02 2015 -0800 |
committer | Campbell Crowley <mail@campbellcrowley.com> | Thu Dec 31 14:56:16 2015 -0800 |
tree | 4da9b374f1bde4a1b27e94827993f98f0e5db611 | |
parent | 35df22f1c138aab606df5a147d472f69df0c254d [diff] [blame] |
Created WPILibRobotBase To not depend on WPILib interfaces and make version changes easier Change-Id: I90abb34c50798dd166bf7eadf359de5f635f6d82
diff --git a/frc971/wpilib/BUILD b/frc971/wpilib/BUILD index c07b7f8..caada86 100644 --- a/frc971/wpilib/BUILD +++ b/frc971/wpilib/BUILD
@@ -172,3 +172,13 @@ '//aos/common/logging:queue_logging', ], ) + +cc_library( + name = 'wpilib_robot_base', + hdrs = [ + 'wpilib_robot_base.h', + ], + deps = [ + '//aos/externals:wpilib', + ], +)