Update of /cvsroot/bprocessor/gui
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6000
Modified Files:
.classpath build.xml
Log Message:
Made double labels use scripts, they are always evaluated and only used if the result is a double
Index: .classpath
===================================================================
RCS file: /cvsroot/bprocessor/gui/.classpath,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** .classpath 10 Aug 2006 15:37:31 -0000 1.5
--- .classpath 12 Oct 2007 08:05:05 -0000 1.6
***************
*** 4,7 ****
--- 4,8 ----
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="/model"/>
+ <classpathentry kind="src" path="/bscript"/>
<classpathentry kind="output" path="build"/>
</classpath>
Index: build.xml
===================================================================
RCS file: /cvsroot/bprocessor/gui/build.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** build.xml 2 Jan 2007 17:27:13 -0000 1.4
--- build.xml 12 Oct 2007 08:05:05 -0000 1.5
***************
*** 8,11 ****
--- 8,12 ----
<property name="model.dir" value="${basedir}/../model"/>
<property name="tools.dir" value="${basedir}/../tools"/>
+ <property name="bscript.dir" value="${basedir}/../bscript"/>
<property name="build.dir" value="${basedir}/build"/>
***************
*** 71,74 ****
--- 72,80 ----
</fileset>
</copy>
+ <copy todir="${lib.dir}">
+ <fileset dir="${bscript.dir}/dist">
+ <include name="**/bscript*"/>
+ </fileset>
+ </copy>
</target>
|