Update of /cvsroot/bprocessor/build
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11471
Modified Files:
build.xml
Log Message:
also build the facade module
Index: build.xml
===================================================================
RCS file: /cvsroot/bprocessor/build/build.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** build.xml 11 Aug 2006 09:39:16 -0000 1.19
--- build.xml 15 Aug 2006 08:33:26 -0000 1.20
***************
*** 14,17 ****
--- 14,18 ----
<property name="gui.dir" value="${basedir}/../gui"/>
<property name="gl.dir" value="${basedir}/../gl"/>
+ <property name="facade.dir" value="${basedir}/../facade"/>
<property name="release.dir" value="${basedir}/dist"/>
***************
*** 26,29 ****
--- 27,31 ----
<ant dir="${gui.dir}" target="clean"/>
<ant dir="${gl.dir}" target="clean"/>
+ <ant dir="${facade.dir}" target="clean"/>
</target>
***************
*** 38,41 ****
--- 40,44 ----
<ant dir="${gui.dir}" target="dist"/>
<ant dir="${gl.dir}" target="dist"/>
+ <ant dir="${facade.dir}" target="dist"/>
<copy todir="${release.dir}">
***************
*** 108,111 ****
--- 111,119 ----
</fileset>
</copy>
+ <copy todir="${release.dir}/plugin">
+ <fileset dir="${facade.dir}/dist">
+ <include name="**/*"/>
+ </fileset>
+ </copy>
<chmod dir="${release.dir}"
perm="ugo+rx"
|