Skip to content

Commit 5766253

Browse files
committed
Still build the example classes in the build/examples dir.
1 parent c746608 commit 5766253

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<project default="jar">
22

33
<target name="compile">
4-
<mkdir dir="build/classes"/>
5-
<mkdir dir="build/classes/"/>
4+
<mkdir dir="build/classes" />
5+
<mkdir dir="build/examples" />
66
<javac includeantruntime="false" debug="on" srcdir="src" destdir="build/classes" />
7-
<javac includeantruntime="false" srcdir="example" classpath="src" destdir="build/classes/" />
7+
<javac includeantruntime="false" srcdir="example" classpath="build/classes" destdir="build/examples" />
88
</target>
99

1010
<target name="jar" depends="compile">

0 commit comments

Comments
 (0)