aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorNick Burch <nick@apache.org>2006-03-26 16:22:16 +0000
committerNick Burch <nick@apache.org>2006-03-26 16:22:16 +0000
commit1918628fe134d629803d17ef38acc1486b07ff8a (patch)
treedabdf37e8d78e54d0cb8d497a535a615d44e73c4 /build.xml
parentea9dd06f19284c3ce1f3f109606dd95f89fc1271 (diff)
downloadpoi-1918628fe134d629803d17ef38acc1486b07ff8a.tar.gz
poi-1918628fe134d629803d17ef38acc1486b07ff8a.zip
Copy HSLF resources over when compiling scratchpad
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@388922 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 01d61b067f..1ba0e0bb7e 100644
--- a/build.xml
+++ b/build.xml
@@ -293,6 +293,15 @@
<pathelement location="${junit.jar1.dir}"/>
</classpath>
</javac>
+
+ <!-- Copy HSLF Resources over -->
+ <property name="hslf.data" value="org/apache/poi/hslf/data" />
+ <mkdir dir="${scratchpad.output.dir}/${hslf.data}" />
+ <copy todir="${scratchpad.output.dir}/${hslf.data}">
+ <fileset dir="${scratchpad.src}/${hslf.data}">
+ <include name="*.ppt" />
+ </fileset>
+ </copy>
</target>
<target name="compile-contrib" depends="init">