mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
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.
14 lines
374 B
14 lines
374 B
8 years ago
|
<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>
|