mirror of
https://github.com/fergalmoran/dss-mobile.git
synced 2025-12-22 09:50:53 +00:00
164 lines
6.0 KiB
XML
164 lines
6.0 KiB
XML
<project name="extjs" default="build" basedir=".">
|
|
|
|
<target name="init-antcontrib">
|
|
<taskdef resource="net/sf/antcontrib/antlib.xml">
|
|
<classpath>
|
|
<pathelement location="${cmd.dir}/lib/ant-contrib-1.0b3.jar"/>
|
|
<pathelement
|
|
location="${cmd..dir}/lib/commons-httpclient-3.0.1.jar"/>
|
|
<pathelement
|
|
location="${cmd.dir}/lib/commons-logging-1.0.4.jar"/>
|
|
<pathelement location="${cmd.dir}/lib/commons-codec-1.3.jar"/>
|
|
</classpath>
|
|
</taskdef>
|
|
</target>
|
|
|
|
|
|
<target name="init-sencha-cmd" depends="init-antcontrib">
|
|
<taskdef resource="com/sencha/ant/antlib.xml" classpath="${cmd.dir}/sencha.jar"/>
|
|
</target>
|
|
|
|
<target name="build" depends="init-sencha-cmd">
|
|
<property name="build.dir" location="${basedir}"/>
|
|
<property name="classpath.excludes"
|
|
value="auth2/Auth.js,scroller/Infinite.js,locale,platform/src"/>
|
|
<!--
|
|
Produce base concatenation for standard distribution files
|
|
-->
|
|
<x-sencha-command>
|
|
<![CDATA[
|
|
compile
|
|
--ignore=${classpath.excludes}
|
|
--include-preprocessor-tags=true
|
|
--options=debug:true,product:touch,minVersion:3,logger:yes,charts:yes
|
|
exclude
|
|
-namespace=Ext.device
|
|
and
|
|
exclude
|
|
-file=src/ux
|
|
and
|
|
concatenate
|
|
--output-file=${build.dir}/sencha-touch-all-debug.js
|
|
and
|
|
union
|
|
--tag=core
|
|
and
|
|
concatenate
|
|
--output-file=${build.dir}/sencha-touch-debug.js
|
|
and
|
|
include
|
|
+all
|
|
and
|
|
exclude
|
|
--tag=core
|
|
and
|
|
metadata
|
|
+append
|
|
+alternates
|
|
--base-path=${build.dir}
|
|
--output-file=${build.dir}/sencha-touch-debug.js
|
|
and
|
|
metadata
|
|
+append
|
|
+alias
|
|
--base-path=${build.dir}
|
|
--output-file=${build.dir}/sencha-touch-debug.js
|
|
and
|
|
--options=debug:false,logger:no
|
|
union
|
|
+all
|
|
and
|
|
exclude
|
|
-namespace=Ext.device
|
|
and
|
|
exclude
|
|
-file=src/ux
|
|
and
|
|
concatenate
|
|
+yui
|
|
--output-file=${build.dir}/sencha-touch-all.js
|
|
and
|
|
--options=debug:true,minVersion:2,logger:yes
|
|
concatenate
|
|
--output-file=${build.dir}/builds/sencha-touch-all-compat.js
|
|
]]>
|
|
</x-sencha-command>
|
|
|
|
<loadfile property="header.text" srcfile="${build.dir}/file-header.txt"/>
|
|
<property name="header.comment" value="${header.text}"/>
|
|
|
|
<!--
|
|
Apply yui compressor
|
|
-->
|
|
<x-compress-js
|
|
srcfile="${build.dir}/sencha-touch-debug.js"
|
|
outfile="${build.dir}/sencha-touch.js"/>
|
|
|
|
<!--
|
|
Add license headers
|
|
-->
|
|
|
|
<for param="file">
|
|
<path>
|
|
<fileset dir="${build.dir}" includes="*.js"/>
|
|
<fileset dir="${build.dir}/builds" includes="*.js"/>
|
|
</path>
|
|
<sequential>
|
|
<move file="@{file}" tofile="@{file}.tmp"/>
|
|
<concat destfile="@{file}">
|
|
<header>${header.comment}</header>
|
|
<fileset file="@{file}.tmp"/>
|
|
</concat>
|
|
<delete file="@{file}.tmp"/>
|
|
</sequential>
|
|
</for>
|
|
</target>
|
|
|
|
<target name="build-examples" depends="init-sencha-cmd">
|
|
<local name="example.workspace.build.dir"/>
|
|
<property name="example.workspace.build.dir"
|
|
value="${basedir}/built-examples"/>
|
|
<delete dir="${example.workspace.build.dir}"/>
|
|
<for param="example">
|
|
<dirset dir="${basedir}/examples" includes="*"/>
|
|
<sequential>
|
|
<local name="example.name"/>
|
|
<local name="example.build.dir"/>
|
|
<basename file="@{example}" property="example.name"/>
|
|
<property name="example.build.dir"
|
|
value="${example.workspace.build.dir}/${example.name}"/>
|
|
<if>
|
|
<and>
|
|
<available file="@{example}/.sencha/app/sencha.cfg"/>
|
|
<available file="@{example}/build.xml"/>
|
|
</and>
|
|
<then>
|
|
<x-sencha-command dir="@{example}" inheritall="false">
|
|
<property name="app.build.dir" value="${example.build.dir}"/>
|
|
<property name="build.dir" value="${example.build.dir}/production"/>
|
|
<property name="skip.sass" value="1"/>
|
|
app
|
|
build
|
|
</x-sencha-command>
|
|
<delete dir="@{example}/archive"/>
|
|
<move todir="${example.build.dir}">
|
|
<fileset dir="${example.build.dir}/production" includes="**/*"/>
|
|
</move>
|
|
<delete dir="${example.build.dir}/production"/>
|
|
</then>
|
|
<else>
|
|
<copy todir="${example.build.dir}">
|
|
<fileset dir="@{example}" includes="**/*"/>
|
|
</copy>
|
|
</else>
|
|
</if>
|
|
</sequential>
|
|
</for>
|
|
<copy todir="${example.workspace.build.dir}">
|
|
<fileset dir="${basedir}/examples" includes="*"/>
|
|
</copy>
|
|
</target>
|
|
|
|
|
|
|
|
</project> |