Skip to content

Commit

Permalink
Reworked backend modules - tidier, leaner, faster
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Apr 23, 2010
1 parent da86464 commit 2ed7743
Show file tree
Hide file tree
Showing 323 changed files with 47,734 additions and 12,365 deletions.
23 changes: 23 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,32 @@
</fileset>
</path>

<path id="jsdoc.classpath">
<fileset dir="${LIB_DIR}">
<include name="**/jsdoctoolkit-ant-task-1.0.2.jar"/>
<include name="**/js.jar"/>

</fileset>
</path>


<target name="all" depends="archive"/>

<target name="docs" depends="package" description="Create JS Docs">
<taskdef name="jsdoctoolkit" classname="uk.co.darrenhurley.ant.tasks.JsDocToolkit">
<classpath>
<path refid="jsdoc.classpath"/>
</classpath>
</taskdef>

<jsdoctoolkit
jsdochome="${basedir}/jsdoc-toolkit/"
template="jsdoc"
outputdir="/home/lindsay/docs/"
inputdir="${basedir}/src/scenejs/"/>
</target>


<target name="archive" depends="package" description="Create archives of downloads">

<tar destfile="${DIST_CONTAINER_DIR}/${SCENEJS_NAME}.tar.gz"
Expand Down
Loading

0 comments on commit 2ed7743

Please sign in to comment.