forked from kissyteam/kissy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
25 lines (21 loc) · 881 Bytes
/
build.xml
File metadata and controls
25 lines (21 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<project name="css.build" default="build" basedir=".">
<description>Css Build File</description>
<property name="component.name" value="css"/>
<property name="src.dir" location="./src/"/>
<import file="../../tools/common.xml"/>
<target name="concat">
<copy todir="${component.src.dir.tmp}">
<fileset dir="${src.dir}" includes="*.css"></fileset>
</copy>
<concat destfile="${component.src.dir.tmp}/base.css" encoding="${charset}" outputencoding="${charset}">
<path path="${src.dir}/reset.css"/>
<path path="${src.dir}/grids.css"/>
<path path="${src.dir}/common.css"/>
<filterchain>
<deletecharacters chars=""/>
</filterchain>
</concat>
</target>
<target name="build" depends="concat,common.build">
</target>
</project>