Skip to content

Commit

Permalink
Updating build to create output folders.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Westberg committed Apr 17, 2010
1 parent 7a86598 commit d242ed1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.xml
Expand Up @@ -9,12 +9,20 @@
<taskdef resource="flexTasks.tasks" classpath="${flex-sdk.dir}/ant/lib/flexTasks.jar"/>

<target name="all">
<antcall target="init" />
<antcall target="clean" />
<antcall target="compile" />
<antcall target="test-reports"></antcall>
<antcall target="test-reports" />
<antcall target="docs" />
</target>

<target name="init">
<mkdir dir="${bin.dir}"/>
<mkdir dir="${docs.dir}"/>
<mkdir dir="${tests.dir}"/>
<mkdir dir="${reports.dir}"/>
</target>

<target name="clean">
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${bin.dir}" defaultexcludes="false">
Expand Down

0 comments on commit d242ed1

Please sign in to comment.