-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
executable file
·41 lines (36 loc) · 1.25 KB
/
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
35
36
37
38
39
40
41
<project name="Chess" default="dist" basedir=".">
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="bin" location="bin"/>
<property name="rsc" location="rsc"/>
<property name="main-class" value="brett.MainWindow"/>
<target name="init">
<!-- Create the build directory structure used by compile -->
<mkdir dir="${bin}"/>
</target>
<target name="compile" depends="init"
description="compile the source" >
<!-- Compile the java code from ${src} into ${bin} -->
<javac srcdir="${src}" destdir="${bin}"/>
</target>
<target name="copy" depends="compile"
description="copy resources" >
<copy todir="${bin}">
<fileset dir="${rsc}"/>
</copy>
</target>
<target name="dist" depends="copy"
description="generate the distribution" >
<!-- Put everything in ${build} into the jar file -->
<jar destfile="Chess.jar" basedir="${bin}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
<attribute name="Class-Path" value="."/>
</manifest>
</jar>
</target>
<target name="clean"
description="clean up" >
<delete dir="${bin}"/>
</target>
</project>