forked from Open-RSC/2D-Landscape-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
32 lines (31 loc) · 1.32 KB
/
build.xml
File metadata and controls
32 lines (31 loc) · 1.32 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
<project default="compile" basedir=".">
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="doc" location="../doc"/>
<property name="lib" location="lib"/>
<property name="jar" location="Landscape_Editor.jar"/>
<property name="settings" location="settings.ini"/>
<property name="javac.source" value="1.8"/>
<property name="javac.target" value="1.8"/>
<target name="compile">
<delete file="${jar}"/>
<delete dir="${build}"/>
<mkdir dir="${build}"/>
<javac srcdir="${src}" destdir="${build}" debug="on" target="${javac.target}" source="${javac.source}"
includeantruntime="false">
<classpath>
<pathelement location="${lib}/xpp3.jar"/>
<pathelement location="${lib}/xstream.jar"/>
<pathelement location="${lib}/forms.jar"/>
<pathelement path="${java.class.path}/"/>
</classpath>
<compilerarg line="-Xlint:unchecked"/>
</javac>
<jar basedir="${build}" destfile="${jar}">
<zipgroupfileset dir="${lib}" includes="*.jar"/>
<manifest>
<attribute name="Main-Class" value="com.GUI"/>
</manifest>
</jar>
</target>
</project>