We now only build the files that have changed. It should speed up compile time as our source tree grows.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@726 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
f33f3c0434
commit
57e5f22987
15
build.xml
15
build.xml
|
|
@ -61,21 +61,12 @@
|
||||||
<condition property="target.is.playground" value="true">
|
<condition property="target.is.playground" value="true">
|
||||||
<equals arg1="${target}" arg2="playground"/>
|
<equals arg1="${target}" arg2="playground"/>
|
||||||
</condition>
|
</condition>
|
||||||
|
|
||||||
<path id="source">
|
|
||||||
<dirset dir="${source.dir}">
|
|
||||||
<patternset>
|
|
||||||
<include name="org/broadinstitute/sting/*"/>
|
|
||||||
<exclude name="**/playground/**" unless="target.is.playground"/>
|
|
||||||
</patternset>
|
|
||||||
</dirset>
|
|
||||||
</path>
|
|
||||||
|
|
||||||
<!-- Compile the java code from ${src} into build -->
|
<!-- Compile the java code from ${src} into build -->
|
||||||
<javac destdir="build" classpathref="external.dependencies"
|
<javac srcdir="${source.dir}" destdir="build" classpathref="external.dependencies"
|
||||||
debug="true" debuglevel="lines,vars,source">
|
debug="true" debuglevel="lines,vars,source">
|
||||||
<!--compilerarg value="-Xlint:unchecked" /-->
|
<!--compilerarg value="-Xlint:unchecked" /-->
|
||||||
<src refid="source" />
|
<exclude name="**/playground/**" unless="target.is.playground"/>
|
||||||
</javac>
|
</javac>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue