Initial commit from SVN.

This commit is contained in:
wcrisman
2014-05-30 10:31:51 -07:00
commit b45e56b890
1968 changed files with 370949 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<!--
Packages the necessary local views for use by the thin client.
-->
<project name="Foundation Widget Test Application Packager" default="package-all" basedir=".">
<property name="compress" value="true"/>
<property name="client-dir" value="./Client Libraries"/>
<target name="package-all" depends="make-dirs, package-views">
</target>
<target name="make-dirs" depends="">
<mkdir dir="${client-dir}"/>
</target>
<target name="package-views">
<jar destfile="${client-dir}/local-views.jar" compress="${compress}" update="false">
<fileset dir=".\bin" includes="test\transfer\view\*.class"/>
<fileset dir=".\bin" includes="test\transfer\view\controller\*.class"/>
</jar>
</target>
</project>