You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by ni...@apache.org on 2006/03/26 18:22:18 UTC

svn commit: r388922 - /jakarta/poi/trunk/build.xml

Author: nick
Date: Sun Mar 26 08:22:16 2006
New Revision: 388922

URL: http://svn.apache.org/viewcvs?rev=388922&view=rev
Log:
Copy HSLF resources over when compiling scratchpad

Modified:
    jakarta/poi/trunk/build.xml

Modified: jakarta/poi/trunk/build.xml
URL: http://svn.apache.org/viewcvs/jakarta/poi/trunk/build.xml?rev=388922&r1=388921&r2=388922&view=diff
==============================================================================
--- jakarta/poi/trunk/build.xml (original)
+++ jakarta/poi/trunk/build.xml Sun Mar 26 08:22:16 2006
@@ -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">



---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/