[Bprocessor-commit] build build.xml,1.20,1.21
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-09-11 20:38:58
|
Update of /cvsroot/bprocessor/build In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv19333 Modified Files: build.xml Log Message: bscript added to build Index: build.xml =================================================================== RCS file: /cvsroot/bprocessor/build/build.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** build.xml 15 Aug 2006 08:33:26 -0000 1.20 --- build.xml 11 Sep 2006 20:38:54 -0000 1.21 *************** *** 12,15 **** --- 12,16 ---- <property name="kernel.dir" value="${basedir}/../kernel"/> <property name="model.dir" value="${basedir}/../model"/> + <property name="bscript.dir" value="${basedir}/../bscript"/> <property name="gui.dir" value="${basedir}/../gui"/> <property name="gl.dir" value="${basedir}/../gl"/> *************** *** 37,40 **** --- 38,42 ---- <ant dir="${kernel.dir}" target="dist"/> + <ant dir="${bscript.dir}" target="dist"/> <ant dir="${model.dir}" target="dist"/> <ant dir="${gui.dir}" target="dist"/> *************** *** 67,70 **** --- 69,77 ---- </fileset> </copy> + <copy todir="${release.dir}/library"> + <fileset dir="${bscript.dir}/dist"> + <include name="**/*"/> + </fileset> + </copy> <copy todir="${release.dir}/library"> <fileset dir="${tools.dir}/hibernate"/> |