diff options
author | Nick Burch <nick@apache.org> | 2006-03-26 16:22:16 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2006-03-26 16:22:16 +0000 |
commit | 1918628fe134d629803d17ef38acc1486b07ff8a (patch) | |
tree | dabdf37e8d78e54d0cb8d497a535a615d44e73c4 /build.xml | |
parent | ea9dd06f19284c3ce1f3f109606dd95f89fc1271 (diff) | |
download | poi-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.xml | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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"> |