-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.xml
84 lines (80 loc) · 2.59 KB
/
build.xml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<project name="app-challenge-winners" default="make-all" basedir="./">
<target name="gen-wgt" depends="clean">
<!-- Creates the widget -->
<zip destfile="${basedir}/${app}.wgt">
<zipfileset dir="${basedir}/${app}/"
excludes="
**/.gitignore
**/*.iml
**/Readme.md
**/*.psd
**/*.bak" />
</zip>
</target>
<target name="clean">
<!-- Removes precompiled widget -->
<delete quiet="true" file="${basedir}/${app}.wgt" />
</target>
<target name="ChatMachine">
<antcall target="gen-wgt">
<param name="app" value="ChatMachine"/>
</antcall>
</target>
<target name="CollabMaps">
<antcall target="gen-wgt">
<param name="app" value="CollabMaps"/>
</antcall>
</target>
<target name="Spocked">
<antcall target="gen-wgt">
<param name="app" value="Spocked"/>
</antcall>
</target>
<target name="webinos-beats">
<antcall target="gen-wgt">
<param name="app" value="webinos-beats"/>
</antcall>
</target>
<target name="WebinosPoker">
<antcall target="gen-wgt">
<param name="app" value="WebinosPoker"/>
</antcall>
</target>
<target name="webinosProjector">
<antcall target="gen-wgt">
<param name="app" value="webinosProjector"/>
</antcall>
</target>
<target name="Whiteboard">
<antcall target="gen-wgt">
<param name="app" value="Whiteboard"/>
</antcall>
</target>
<target name="WordBattle">
<antcall target="gen-wgt">
<param name="app" value="WordBattle"/>
</antcall>
</target>
<target name="tiledViewer">
<antcall target="gen-wgt">
<param name="app" value="tiledViewer/tiledimage"/>
</antcall>
<move file="${basedir}/tiledViewer/tiledimage.wgt" tofile="${basedir}/tiledimage.wgt"/>
<antcall target="gen-wgt">
<param name="app" value="tiledViewer/tiledmaps"/>
</antcall>
<move file="${basedir}/tiledViewer/tiledmaps.wgt" tofile="${basedir}/tiledmaps.wgt"/>
</target>
<target name="make-all">
<antcall target="ChatMachine" />
<antcall target="CollabMaps" />
<antcall target="Spocked" />
<antcall target="tiledViewer" />
<antcall target="webinos-beats" />
<antcall target="WebinosPoker" />
<antcall target="webinosProjector" />
<antcall target="Whiteboard" />
<antcall target="WordBattle" />
</target>
</project>