-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.xml
32 lines (26 loc) · 993 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<project name="4904Standard" basedir=".">
<description>
A simple buildfile to satisfy travis
</description>
<!-- version, team number; version is requuired for filepath below -->
<property file="${user.home}/wpilib/wpilib.properties"/>
<property file="${user.home}/wpilib/java/${version}/ant/build.properties"/>
<target name="clean">
<delete dir="build"/>
</target>
<target name="compile">
<mkdir dir="build/classes"/>
<path id="classpath.path">
<fileset dir="${userLibs.dir}"
includes="*.jar"
excludes="*-sources.jar,*-javadoc.jar"
erroronmissingdir="true" />
<fileset file="${wpilib.jar}" />
<fileset file="${ntcore.jar}" />
<fileset file="${opencv.jar}" />
<fileset file="${cscore.jar}" />
<fileset file="${wpiutil.jar}" />
</path>
<javac srcdir="${basedir}" destdir="build/classes" includeantruntime="false" classpathref="classpath.path" />
</target>
</project>