[Bprocessor-commit] bscript .classpath,1.2,1.3 build.xml,1.2,1.3
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-09-12 09:27:34
|
Update of /cvsroot/bprocessor/bscript In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4945 Modified Files: .classpath build.xml Log Message: new scripting capabilities Index: .classpath =================================================================== RCS file: /cvsroot/bprocessor/bscript/.classpath,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .classpath 11 Sep 2006 19:07:12 -0000 1.2 --- .classpath 12 Sep 2006 09:27:31 -0000 1.3 *************** *** 4,7 **** --- 4,8 ---- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="lib" path="/tools/antlr/antlr.jar"/> + <classpathentry combineaccessrules="false" kind="src" path="/model"/> <classpathentry kind="output" path="build"/> </classpath> Index: build.xml =================================================================== RCS file: /cvsroot/bprocessor/bscript/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.xml 11 Sep 2006 19:07:12 -0000 1.2 --- build.xml 12 Sep 2006 09:27:31 -0000 1.3 *************** *** 27,31 **** --- 27,38 ---- </target> + + <target name="compile" depends="compile-grammar,init"> + <copy todir="${lib.dir}"> + <fileset dir="${model.dir}/dist"> + <include name="**/model*"/> + </fileset> + </copy> <ant dir="src" target="compile"/> </target> |