Update of /cvsroot/bprocessor/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5293
Modified Files:
build.xml
Log Message:
Delays showing the GUI window until the GLView is done with initialisation.
Displays a SplashWindow on startup, that are removed when the GUI window is displayed.
Index: build.xml
===================================================================
RCS file: /cvsroot/bprocessor/gui/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:23 -0000 1.1.1.1
--- build.xml 21 Oct 2005 08:42:47 -0000 1.2
***************
*** 17,20 ****
--- 17,22 ----
<property name="dist.dir" value="${basedir}/dist"/>
+ <property name="gfx.dir" value="${src.dir}/gfx"/>
+
<property name="checkstyle-results" value="${build.dir}/checkstyle-results.txt" />
***************
*** 82,85 ****
--- 84,91 ----
</target>
+ <target name="fastcompile" depends="copylib">
+ <ant dir="src" target="compile"/>
+ </target>
+
<target name="doc" depends="copylib">
<delete dir="${doc.api.dir}"/>
***************
*** 87,92 ****
</target>
! <target name="jar" depends="compile">
<mkdir dir="${dist.dir}"/>
<jar jarfile="${dist.dir}/${name}.jar"
basedir="${build.dir}"
--- 93,103 ----
</target>
! <target name="jar" depends="prepare">
<mkdir dir="${dist.dir}"/>
+ <copy todir="${build.dir}">
+ <fileset dir="${gfx.dir}">
+ <include name="**/*"/>
+ </fileset>
+ </copy>
<jar jarfile="${dist.dir}/${name}.jar"
basedir="${build.dir}"
***************
*** 108,114 ****
</target>
! <target name="dist" depends="jar">
</target>
<target name="release" depends="clean,dist">
<move todir="${basedir}/archive/${name}-${version}">
--- 119,129 ----
</target>
! <target name="dist" depends="compile,jar">
</target>
+ <target name="fast" depends="fastcompile,jar">
+ </target>
+
+
<target name="release" depends="clean,dist">
<move todir="${basedir}/archive/${name}-${version}">
|