You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
656 B
20 lines
656 B
<project default="compile">
|
|
|
|
<target name="clean">
|
|
<delete dir="ant_out"/>
|
|
</target>
|
|
|
|
<target name="compile">
|
|
<mkdir dir="ant_out"/>
|
|
<javac srcdir="src/infer" destdir="ant_out" includeantruntime="false">
|
|
<classpath>
|
|
<pathelement location="../../../lib/java/android/android-19.jar"/>
|
|
<pathelement location="../../../../dependencies/java/jackson/jackson-2.2.3.jar"/>
|
|
<pathelement location="../../../lib/java/models.jar"/>
|
|
<pathelement location="../../../annotations//annotations.jar"/>
|
|
</classpath>
|
|
</javac>
|
|
</target>
|
|
|
|
</project>
|