Update of /cvsroot/bprocessor/build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27060
Modified Files:
build.xml
Log Message:
Added GL module to build
Index: build.xml
===================================================================
RCS file: /cvsroot/bprocessor/build/build.xml,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** build.xml 27 Jun 2005 09:32:45 -0000 1.1.1.1
--- build.xml 14 Jul 2005 09:50:58 -0000 1.2
***************
*** 7,13 ****
--- 7,16 ----
<property name="script.dir" value="${basedir}/bin"/>
+ <property name="tools.dir" value="${basedir}/../tools"/>
+
<property name="kernel.dir" value="${basedir}/../kernel"/>
<property name="model.dir" value="${basedir}/../model"/>
<property name="gui.dir" value="${basedir}/../gui"/>
+ <property name="gl.dir" value="${basedir}/../gl"/>
<property name="release.dir" value="${basedir}/dist"/>
***************
*** 21,24 ****
--- 24,28 ----
<ant dir="${model.dir}" target="clean"/>
<ant dir="${gui.dir}" target="clean"/>
+ <ant dir="${gl.dir}" target="clean"/>
</target>
***************
*** 32,35 ****
--- 36,40 ----
<ant dir="${model.dir}" target="dist"/>
<ant dir="${gui.dir}" target="dist"/>
+ <ant dir="${gl.dir}" target="dist"/>
<copy todir="${release.dir}">
***************
*** 53,56 ****
--- 58,69 ----
</fileset>
</copy>
+ <copy todir="${release.dir}/library">
+ <fileset dir="${tools.dir}/jogl"/>
+ </copy>
+ <copy todir="${release.dir}/plugin">
+ <fileset dir="${gl.dir}/dist">
+ <include name="**/*"/>
+ </fileset>
+ </copy>
<chmod dir="${release.dir}"
perm="ugo+rx"
|