blob: c6d929d67d08273ce428969ea7a147c514f49be2 [file] [log] [blame]
<?xml version="1.0"?>
<project name="soyc-vis" default="build" basedir=".">
<property name="gwt.root" location="../.." />
<property name="project.tail" value="tools/soyc-vis" />
<import file="${gwt.root}/common.ant.xml" />
<target name="clean">
<delete dir="build"/>
</target>
<target name="compile">
<mkdir dir="${javac.out}"/>
<javac srcdir="src" destdir="${javac.out}"/>
<mkdir dir="${javac.out}/images"/>
<copy todir="${javac.out}/images">
<fileset dir="images"/>
</copy>
<copy file="classLevel.css" tofile="${javac.out}/classLevel.css"/>
<copy file="roundedCorners.css" tofile="${javac.out}/roundedCorners.css"/>
</target>
<target name="build" depends="compile">
<gwt.jar>
<fileset dir="${javac.out}" />
<manifest>
<attribute name="Main-Class" value="com.google.gwt.soyc.SoycDashboard" />
</manifest>
</gwt.jar>
</target>
<target name="test"/>
<target name="checkstyle"/>
</project>