Initial commit from SVN.
This commit is contained in:
22
Foundation Widget Test Application/package.xml
Normal file
22
Foundation Widget Test Application/package.xml
Normal 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>
|
||||
Reference in New Issue
Block a user