blob: dde2ebb89c04aa73e3c4183d6e5136d0500e5892 [file] [log] [blame]
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00001<project name="dev" default="build" basedir=".">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00002 <property name="gwt.root" location=".." />
3 <property name="project.tail" value="dev" />
4 <import file="${gwt.root}/platforms.ant.xml" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00005
fabbott@google.comf6dd0142009-07-11 02:19:32 +00006
7 <target name="test" description="Tests this project, but only on this platform">
8 <gwt.ant dir="core" target="test"/>
9 <gwt.ant dir="oophm" target="test"/>
10 <gwt.ant dir="${build.host.platform}" target="test"/>
11 </target>
12
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000013 <target name="clean" description="Cleans this project's intermediate and output files">
14 <delete dir="${project.build}" failonerror="false" />
15 <delete failonerror="false">
16 <fileset dir="${gwt.build.lib}" includes="gwt-dev-*.jar"/>
17 </delete>
18 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000019</project>