]> source.dussan.org Git - poi.git/commitdiff
Copy HSLF resources over when compiling scratchpad
authorNick Burch <nick@apache.org>
Sun, 26 Mar 2006 16:22:16 +0000 (16:22 +0000)
committerNick Burch <nick@apache.org>
Sun, 26 Mar 2006 16:22:16 +0000 (16:22 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@388922 13f79535-47bb-0310-9956-ffa450edef68

build.xml

index 01d61b067f14987406577f4d0ab36b752ac7df6e..1ba0e0bb7e820d24e70099ab0d95466a33794dd3 100644 (file)
--- a/build.xml
+++ b/build.xml
         <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">