-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
34 lines (22 loc) · 892 Bytes
/
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
<!--
+==========================================================================
| Batch Processing
+==========================================================================
-->
<project name="stencyl" basedir="." default="dist">
<property name="pkg" value="com/polydes/batch" />
<property name="main" value="com.polydes.batch.BatchProcessing" />
<property name="name" value="Batch Processing" />
<property name="description" value="Do batch processing on resources." />
<property name="author" value="Justin Espedal" />
<property name="internalVersion" value="1" />
<property name="version" value="0.0.1" />
<include file="../Common/build-helper.xml" as="common" />
<target name="dist">
<antcall>
<target name="common.compile" />
<target name="common.copy-resources" />
<target name="common.makejar" />
</antcall>
</target>
</project>