| <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" /> |
| <!-- Platform shouldn't matter here, just picking one --> |
| <property.ensure name="gwt.dev.jar" location="${gwt.build.lib}/gwt-dev-${build.host.platform}.jar" /> |
| <mkdir dir="${javac.out}"/> |
| <javac srcdir="src" destdir="${javac.out}"> |
| <pathelement location="${gwt.dev.jar}" /> |
| <mkdir dir="${javac.out}/images"/> |
| <copy todir="${javac.out}/images"> |
| <copy file="classLevel.css" tofile="${javac.out}/classLevel.css"/> |
| <copy file="roundedCorners.css" tofile="${javac.out}/roundedCorners.css"/> |
| <target name="build" depends="compile"> |
| <fileset dir="${javac.out}" /> |
| <attribute name="Main-Class" value="com.google.gwt.soyc.SoycDashboard" /> |
| <target name="checkstyle"/> |