[Bprocessor-commit] gl .project,NONE,1.1 .classpath,NONE,1.1 build.xml,1.2,1.3
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2005-08-10 12:42:58
|
Update of /cvsroot/bprocessor/gl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27296 Modified Files: build.xml Added Files: .project .classpath Log Message: Eclipse project A DebugTool for testing purposes is added to the tool bar. Currently it verifies that we dont have object identity - the database is queried whenever the model are accessed. This creates multible copies of all objects. The dist rule in build.xml are modifed to copy the gl.jar to the dist directory in build/dist/plugin. --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>gl</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> Index: build.xml =================================================================== RCS file: /cvsroot/bprocessor/gl/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.xml 28 Jul 2005 11:00:15 -0000 1.2 --- build.xml 10 Aug 2005 12:42:46 -0000 1.3 *************** *** 126,129 **** --- 126,134 ---- <target name="dist" depends="jar"> + <copy todir="${basedir}/../build/dist/plugin"> + <fileset dir="${dist.dir}"> + <include name="**/*"/> + </fileset> + </copy> </target> --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="lib" path="lib/model.jar"/> <classpathentry kind="lib" path="lib/log4j.jar"/> <classpathentry kind="lib" path="lib/kernel.jar"/> <classpathentry kind="lib" path="lib/jogl.jar"/> <classpathentry kind="lib" path="lib/gui.jar"/> <classpathentry kind="output" path="build"/> </classpath> |