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
20 lines (16 loc) · 684 Bytes
/
build.xml
File metadata and controls
20 lines (16 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<project name="overlay.build" default="build" basedir=".">
<description>Overlay Build File</description>
<property name="component.name" value="overlay"/>
<property name="src.dir" location="./src/"/>
<import file="../../tools/common.xml"/>
<target name="concat">
<concat destfile="${component.src.dir.tmp}/overlay-pkg.js" encoding="${charset}" outputencoding="${charset}">
<fileset dir="${src.dir}" includes="**/*.js"/>
<filterchain>
<deletecharacters chars="" />
</filterchain>
</concat>
</target>
<target name="build" depends="concat,common.build">
</target>
</project>