-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold-build.xml
27 lines (27 loc) · 963 Bytes
/
old-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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project [<!ENTITY buildfile SYSTEM "file:./build-user.xml">]>
<!-- WARNING: Eclipse autogenerated file.
Any modifications will be overwritten.
Please edit build-user.xml instead.
-->
<project basedir="." default="build" name="BipProject">
&buildfile;
<property name="BipProject.location" value="/home/reignier/workspace/BipProject"/>
<path id="project.classpath">
<pathelement location="bin"/>
<pathelement location="${BipProject.location}/lib/dns_sd.jar"/>
</path>
<target name="init">
<mkdir dir="bin"/>
</target>
<target name="clean">
<delete dir="bin"/>
</target>
<target depends="init" name="build">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac destdir="bin">
<src path="src"/>
<classpath refid="project.classpath"/>
</javac>
</target>
</project>