Add genrecord task and Depot dependency test.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4755 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Par Winzell
2007-07-11 23:29:30 +00:00
parent e53200e627
commit 1ea3195551
2 changed files with 32 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0"?>
<!-- build configuration -->
<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>