summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2011-07-01 12:18:52 (GMT)
committerKevin Smith <git@kismith.co.uk>2011-07-01 12:18:52 (GMT)
commit2169d8cd423c399ceb53e962ad5313e3c28d2297 (patch)
treec581d1ba8b15509c15a8fadfbc2090c915aec1ad /build.xml
parent2da71a8a85486a494343f1662d64fb5ae5a2a44e (diff)
downloadstroke-2169d8cd423c399ceb53e962ad5313e3c28d2297.zip
stroke-2169d8cd423c399ceb53e962ad5313e3c28d2297.tar.bz2
Update the ByteArray to not copy excessively on appends.
Also updates build.xml so the path to the xpp library can be specified, rather than needing the same layout as my build tree.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 820b482..94ef93b 100644
--- a/build.xml
+++ b/build.xml
@@ -15,9 +15,10 @@
<property name="main-class" value="com.isode.stroke.examples.gui.StrokeGUI"/>
<property name="compile.debug" value="true"/>
<property name="testsuiteclass" value="com.isode.stroke.unittest.StrokeTestSuite" />
+ <property name="xpp-dir" value="../third-party/xpp"/>
<path id="classpath">
- <fileset dir="../third-party/xpp" includes="xpp.jar"/>
+ <fileset dir="${xpp-dir}" includes="xpp.jar"/>
</path>
<target name="init">
<tstamp/>