]> git.proxmox.com Git - extjs.git/blob - extjs/classic/theme-neptune/.sencha/package/resources-impl.xml
add extjs 6.0.1 sources
[extjs.git] / extjs / classic / theme-neptune / .sencha / package / resources-impl.xml
1 <project name="x-resources-impl">
2 <target name="-before-inherit-resources"/>
3 <target name="-after-inherit-resources"/>
4 <target name="-inherit-resources">
5 <for list="${package.base.packages}" param="base">
6 <sequential>
7 <local name="base.path"/>
8 <local name="base.resource.path"/>
9 <property name="base.path" location="@{base}"/>
10 <property name="base.resource.path" location="${base.path}/resources"/>
11 <echo>Merging resources from base package ${base.path}</echo>
12 <if>
13 <available file="${base.resource.path}" type="dir"/>
14 <then>
15 <copy todir="${build.out.resources.dir}/" overwrite="true">
16 <fileset dir="${base.resource.path}" includes="**/*"/>
17 </copy>
18 </then>
19 </if>
20 </sequential>
21 </for>
22 </target>
23
24 <target name="-before-copy-resources"/>
25 <target name="-after-copy-resources"/>
26 <target name="-copy-resources">
27 <echo>Merging resources from current package ${package.resources.dir}</echo>
28 <copy todir="${build.out.resources.dir}" overwrite="true">
29 <fileset dir="${package.resources.dir}" includes="**/*"/>
30 </copy>
31 <property name="target.json.resources.dir" value="${package.output.base}"/>
32 <property name="target.config.resources.dir" value="${build.resources.dir}"/>
33 <x-compile refid="${compiler.ref.id}">
34 <![CDATA[
35 resources
36 -excludes=-all*.css
37 -out=${target.config.resources.dir}
38 and
39 resources
40 -model=true
41 -out=${target.json.resources.dir}
42 ]]>
43 </x-compile>
44 </target>
45 </project>