forked from mapeditor/tiled-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
25 lines (23 loc) · 826 Bytes
/
Copy pathbuild.xml
File metadata and controls
25 lines (23 loc) · 826 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
<project name="Tiled" default="dist">
<description>
Lua plugin for Tiled
</description>
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="../../dist"/>
<target name="dist" description="Generate the distribution">
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
<javac source="1.5" target="1.5" srcdir="${src}" destdir="${build}" classpath="${dist}/tiled.jar"/>
<jar
jarfile="${dist}/plugins/lua.jar"
manifest="MANIFEST.MF"
basedir="${build}"
includes="tiled/plugins/lua/*.class"
/>
</target>
<target name="clean" description="Clean up the build directory" >
<delete dir="${build}"/>
</target>
</project>