-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
49 lines (32 loc) · 1.35 KB
/
build.xml
File metadata and controls
49 lines (32 loc) · 1.35 KB
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
<!--
+==========================================================================
| Data Structures Extension
+==========================================================================
-->
<project name="polydes/structures" basedir="." default="dist">
<property name="pkg" value="com/polydes/datastruct" />
<property name="main" value="com.polydes.datastruct.DataStructuresExtension" />
<property name="type" value="game" />
<property name="dependsOn" value="engine-com.polydes.datastruct-2.0.0,stencyl-4.1.0-b10638" />
<property name="name" value="Data Structures Extension" />
<property name="description" value="Create and Manage Data Structures." />
<property name="author" value="Justin Espedal" />
<property name="internalVersion" value="4" />
<property name="version" value="2.1.0" />
<include file="../Common/build-helper.xml" as="common" />
<target name="dist">
<var name="srcpath" value="${srcpath}:./target/generated-sources" />
<var name="clspath" value="${swjar.4.1.0-b10638}" />
<var name="usinglibs" value="true" />
<antcall>
<target name="common.compile" />
<target name="common.copy-resources" />
<target name="common.makejar" />
</antcall>
</target>
<target name="engine">
<copy toDir="${enginebuildpath}/com.polydes.datastruct">
<fileset dir="engine" />
</copy>
</target>
</project>