| <project name="platforms">
|
| <import file="${gwt.root}/common.ant.xml" />
|
| <!-- "build" is the default when subprojects are directly targetted -->
|
| <property name="target" value="build" />
|
| <available file="core/build.xml" type="file" property="core.exists" />
|
| <target name="core" description="Run core" if="core.exists">
|
| <target name="linux" depends="core" description="Run linux">
|
| <target name="windows" depends="core" description="Run windows">
|
| <gwt.ant dir="windows" />
|
| <target name="mac" depends="core" description="Run mac">
|
| <target name="-do" depends="linux, windows, mac" description="Run all platforms" />
|
| <target name="build" description="Build each platforms">
|
| <param name="target" value="build" />
|
| <target name="checkstyle" description="Static analysis of source for each platform">
|
| <param name="target" value="checkstyle" />
|
| <target name="test" depends="build" description="Test each platform">
|
| <param name="target" value="test" />
|