a68b0aee35
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@378 c613c5cb-e716-0410-b11b-feb51c14d237
22 lines
687 B
XML
22 lines
687 B
XML
<?xml version="1.0"?>
|
|
|
|
<!-- build configuration -->
|
|
<project name="vilya-checks" basedir=".">
|
|
|
|
<!-- checks the availability of certain libraries -->
|
|
<target name="check-available">
|
|
<available property="xml-writer.present"
|
|
classname="com.megginson.sax.DataWriter" classpathref="classpath"/>
|
|
<echo level="info" message="Have XML Writer: ${xml-writer.present}"/>
|
|
|
|
<condition property="build.xml">
|
|
<isset property="xml-writer.present"/>
|
|
</condition>
|
|
|
|
<available property="depot.present"
|
|
classname="com.samskivert.jdbc.depot.Query" classpathref="classpath"/>
|
|
<echo level="info" message="Have JDBC Depot: ${depot.present}"/>
|
|
</target>
|
|
|
|
</project>
|