compile the new java files in the actors library

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@10239 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
spoon 2007-03-07 21:47:33 +00:00
parent 135fe83f34
commit 01446d60dd
1 changed files with 8 additions and 0 deletions

View File

@ -285,6 +285,13 @@
<!-- Build Actors -->
<mkdir dir="${build.actors.dir}"/>
<javac
srcdir="${src.actors.dir}"
destdir="${build.actors.dir}"
source="${jc.source}" target="${jc.target}" deprecation="${jc.deprecation}">
<include name="**/*.java"/>
</javac>
<starr
srcdir="${src.actors.dir}"
destdir="${build.actors.dir}"
@ -292,6 +299,7 @@
<classpath>
<pathelement location="${build.lib.dir}"/>
<pathelement location="${build.comp.dir}"/>
<pathelement location="${build.actors.dir}"/>
</classpath>
<include name="**/*.scala"/>
</starr>