Depot is always built, now.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4781 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Par Winzell
2007-07-26 20:00:48 +00:00
parent 8275f739c0
commit 9aaf4de2b5
2 changed files with 1 additions and 9 deletions
+1 -2
View File
@@ -155,12 +155,11 @@
</target> </target>
<!-- build the java class files --> <!-- build the java class files -->
<target name="compile" depends="check-available,prepare"> <target name="compile" depends="prepare">
<javac srcdir="src/java" destdir="${classes.dir}" includeAntRuntime="false" <javac srcdir="src/java" destdir="${classes.dir}" includeAntRuntime="false"
debug="on" optimize="{$build.optimize}" deprecation="on" debug="on" optimize="{$build.optimize}" deprecation="on"
source="1.5" target="1.5"> source="1.5" target="1.5">
<classpath refid="classpath"/> <classpath refid="classpath"/>
<exclude name="com/threerings/parlor/rating/server/**" unless="depot.present"/>
<compilerarg value="-Xlint"/> <compilerarg value="-Xlint"/>
<compilerarg value="-Xlint:-serial"/> <compilerarg value="-Xlint:-serial"/>
</javac> </javac>
-7
View File
@@ -3,11 +3,4 @@
<!-- build configuration --> <!-- build configuration -->
<project name="narya-checks" basedir="."> <project name="narya-checks" basedir=".">
<!-- checks the availability of certain libraries -->
<target name="check-available">
<available property="depot.present"
classname="com.samskivert.jdbc.depot.Query" classpathref="classpath"/>
<echo message="Have JDBC Depot: ${depot.present}"/>
</target>
</project> </project>