-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
38 lines (24 loc) · 1013 Bytes
/
build.xml
File metadata and controls
38 lines (24 loc) · 1013 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
34
35
36
37
38
<!--
+==========================================================================
| Common Extension Utilities Library
+==========================================================================
-->
<project name="polydes/common" basedir="." default="dist">
<property file="build-helper.properties"/>
<property name="pkg" value="com/polydes/common" />
<property name="type" value="java_library" />
<property name="name" value="Common Extensions Library" />
<property name="description" value="Utilities for Stencyl Extensions." />
<property name="author" value="Justin Espedal" />
<property name="version" value="1.3.0" />
<property name="dependsOn" value="stencyl-3.5.0-beta2" />
<property name="clspath" value="${swjar}" />
<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>