[Bprocessor-commit] gl build.xml,1.4,1.5 .classpath,1.3,1.4
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-09-11 20:39:04
|
Update of /cvsroot/bprocessor/gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv19343 Modified Files: build.xml .classpath Log Message: bscript added to build Index: .classpath =================================================================== RCS file: /cvsroot/bprocessor/gl/.classpath,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** .classpath 24 Jan 2006 13:57:25 -0000 1.3 --- .classpath 11 Sep 2006 20:38:59 -0000 1.4 *************** *** 6,9 **** --- 6,10 ---- <classpathentry kind="src" path="/model"/> <classpathentry kind="lib" path="/tools/jogl/jogl.jar"/> + <classpathentry combineaccessrules="false" kind="src" path="/bscript"/> <classpathentry kind="output" path="build"/> </classpath> Index: build.xml =================================================================== RCS file: /cvsroot/bprocessor/gl/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.xml 29 Sep 2005 21:00:37 -0000 1.4 --- build.xml 11 Sep 2006 20:38:59 -0000 1.5 *************** *** 7,10 **** --- 7,11 ---- <property name="kernel.dir" value="${basedir}/../kernel"/> <property name="model.dir" value="${basedir}/../model"/> + <property name="bscript.dir" value="${basedir}/../bscript"/> <property name="tools.dir" value="${basedir}/../tools"/> <property name="gui.dir" value="${basedir}/../gui"/> *************** *** 71,74 **** --- 72,80 ---- </fileset> </copy> + <copy todir="${lib.dir}"> + <fileset dir="${bscript.dir}/dist"> + <include name="**/bscript*"/> + </fileset> + </copy> <copy todir="${lib.dir}"> <fileset dir="${gui.dir}/dist"> |