T
timasmith
Hi,
I have
<target name="compile" depends="prepare">
<javac destdir="${build.dir}" classpathref="build.classpath"
debug="on">
<src path="${framework.dir}:${src.dir}"/>
</javac>
</target>
The files in the src.dir
com.mysite.myapp...
are dependent on the framework files
com.mysite.myframework...
and everything compiles ok in Eclipse though I had to create a build
path source link which was a little strange but worked.
How can I compile two directories with one dependent on the other?
thanks
Tim
I have
<target name="compile" depends="prepare">
<javac destdir="${build.dir}" classpathref="build.classpath"
debug="on">
<src path="${framework.dir}:${src.dir}"/>
</javac>
</target>
The files in the src.dir
com.mysite.myapp...
are dependent on the framework files
com.mysite.myframework...
and everything compiles ok in Eclipse though I had to create a build
path source link which was a little strange but worked.
How can I compile two directories with one dependent on the other?
thanks
Tim