Brian Silverman | 890a32a | 2018-03-11 15:41:56 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | |
| 3 | <project name="FRC Deployment" default="deploy"> |
| 4 | |
| 5 | <!-- The following properties can be defined to override system level settings. |
| 6 | These should not be touched unless you know what you're doing. The primary |
| 7 | use is to override the wpilib version when working with older robots that |
| 8 | can't compile with the latest libraries. --> |
| 9 | |
| 10 | <!-- By default the system version of WPI is used --> |
| 11 | <!-- <property name="version" value=""/> --> |
| 12 | |
| 13 | <!-- By default the system team number is used --> |
| 14 | <!-- <property name="team-number" value=""/> --> |
| 15 | |
| 16 | <!-- By default the target is set to 10.TE.AM.2 --> |
| 17 | <!-- <property name="target" value=""/> --> |
| 18 | |
| 19 | <!-- Any other property in build.properties can also be overridden. --> |
| 20 | |
| 21 | <property file="${user.home}/wpilib/wpilib.properties" /> |
| 22 | <property file="build.properties" /> |
| 23 | <property file="${user.home}/wpilib/java/${version}/ant/build.properties" /> |
| 24 | |
| 25 | <import file="${wpilib.ant.dir}/build.xml" /> |
| 26 | |
| 27 | </project> |