-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.xml
More file actions
33 lines (28 loc) · 994 Bytes
/
build.xml
File metadata and controls
33 lines (28 loc) · 994 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
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<project name="pocContactsAndEvents" default="make-all" basedir="./">
<target name="gen-wgt" depends="clean">
<!-- Creates the widget -->
<zip destfile="${basedir}/${app}.wgt">
<zipfileset dir="${basedir}/"
excludes="
**/.gitignore
**/*.iml
**/build.xml
**/README.md
**/*.psd
**/*.bak" />
</zip>
</target>
<target name="clean">
<!-- Removes precompiled widget -->
<delete quiet="true" file="${basedir}/${app}.wgt" />
</target>
<target name="ContactsAndEvents">
<antcall target="gen-wgt">
<param name="app" value="ContactsAndEvents"/>
</antcall>
</target>
<target name="make-all">
<antcall target="ContactsAndEvents" />
</target>
</project>