Skip to content

Commit ce12212

Browse files
Update build.xml
1 parent 1e8ceaf commit ce12212

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

build.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<project name="JavaProject" default="compile" basedir=".">
2+
<property name="src.dir" value="src"/>
3+
<property name="build.dir" value="build"/>
4+
5+
<target name="init">
6+
<mkdir dir="${build.dir}"/>
7+
</target>
8+
9+
<target name="compile" depends="init">
10+
<javac srcdir="${src.dir}" destdir="${build.dir}"/>
11+
</target>
12+
13+
<target name="clean">
14+
<delete dir="${build.dir}"/>
15+
</target>
16+
</project>

0 commit comments

Comments
 (0)