From: <ega...@us...> - 2003-10-17 22:10:05
|
Update of /cvsroot/jrman/drafts In directory sc8-pr-cvs1:/tmp/cvs-serv18814 Modified Files: build.xml Log Message: Added javax.vecmath unofficial implementation. Index: build.xml =================================================================== RCS file: /cvsroot/jrman/drafts/build.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** build.xml 16 Oct 2003 04:44:40 -0000 1.13 --- build.xml 17 Oct 2003 22:05:13 -0000 1.14 *************** *** 3,6 **** --- 3,7 ---- <property file="build.properties"/> <property name="src" location="src"/> + <property name="lib" location="lib"/> <property name="build" location="build"/> <property name="jrman" location="jrMan"/> *************** *** 20,24 **** description="compile the source " > <!-- Compile the java code from ${src} into ${build} --> ! <javac srcdir="${src}" destdir="${build}" source="1.4" debug="on" /> </target> --- 21,26 ---- description="compile the source " > <!-- Compile the java code from ${src} into ${build} --> ! <javac srcdir="${src}" destdir="${build}" source="1.4" debug="on" ! classpath="${lib}/vecmath.jar" /> </target> *************** *** 56,59 **** --- 58,67 ---- </fileset> </copy> + + <copy todir="${dist}/jar" > + <fileset dir="${lib}"> + <include name="**"/> + </fileset> + </copy> <chmod perm="+x" file="${dist}/bin/jrman"/> |