Compiling the Java tutorials codes using Apache Ant.

This commit is contained in:
tribta
2017-06-26 16:24:10 +01:00
parent 9bb17caa24
commit 3611396c0b
3 changed files with 56 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<project default="compile">
<property name="lib.dir" value="${ocvJarDir}"/>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
<target name="compile">
<mkdir dir="${dstDir}"/>
<javac includeantruntime="false" srcdir="${srcDir}" destdir="${dstDir}" classpathref="classpath"/>
</target>
</project>