-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
36 lines (27 loc) · 998 Bytes
/
build.xml
File metadata and controls
36 lines (27 loc) · 998 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="simplesound" default="jar" basedir=".">
<property file="build.properties"/>
<property name="src.dir" location="src"/>
<property name="build.dir" location="build"/>
<!-- compile to build dir -->
<target name="compile">
<delete dir="${build.dir}"/>
<mkdir dir="${build.dir}"/>
<javac srcdir="${src.dir}"
destdir="${build.dir}"
debug="true"
source="1.5"
target="1.5"
debuglevel="vars,lines,source">
</javac>
<copy todir="${build.dir}">
<fileset dir="${src.dir}">
<exclude name="**/*.java"/>
</fileset>
</copy>
</target>
<!-- dagitim kutuphanelerini jar icerisine gomelim.-->
<target name="jar" depends="compile">
<jar basedir="${build.dir}" file="${name}-${version}.jar"/>
</target>
</project>