|
From: <doc...@us...> - 2007-11-10 00:41:21
|
Revision: 194
http://openpcl.svn.sourceforge.net/openpcl/?rev=194&view=rev
Author: documentsystems
Date: 2007-11-09 16:41:24 -0800 (Fri, 09 Nov 2007)
Log Message:
-----------
Howard Hoagland, added:
<!-- Need to copy all the files in the src/.../images dir to the build/classes/.../images dir so that the
app can run under Eclipse when the .class files were build using the build.xml file compile target -->
<copy todir="${classes.dir}/${images.dir}">
<fileset dir="${src.dir}/${images.dir}"/>
</copy>
Modified Paths:
--------------
openpcl/build.xml
Modified: openpcl/build.xml
===================================================================
--- openpcl/build.xml 2007-11-09 22:56:09 UTC (rev 193)
+++ openpcl/build.xml 2007-11-10 00:41:24 UTC (rev 194)
@@ -19,7 +19,7 @@
<property name="src.localinstaller.dir" value="${src.dir}/com/openpcl/install/localinstaller"/>
<property name="src.webstart.dir" value="${src.dir}/com/openpcl/install/webstart"/>
<property name="src.data.dir" value="${src.dir}/com/openpcl/data"/>
- <property name="src.images.dir" value="${src.dir}/com/openpcl/viewer/images"/>
+ <property name="images.dir" value="com/openpcl/viewer/images"/>
<property name="pclrenderimage.dir" value="com/openpcl/pclrenderimage"/>
<!--
@@ -61,7 +61,7 @@
<target name="clean" description="Clean build created directories and generated .jar files">
<delete dir="${build.dir}"/>
<!-- Don't delete TableLayout.jar in the lib dir. -->
- <delete file="${src.images.dir}/thumbs.db"/>
+ <delete file="${src.dir}/${images.dir}/thumbs.db"/>
<echo>Finished OpenPCL Ant build.xml "clean" target.</echo>
</target>
@@ -70,7 +70,12 @@
<mkdir dir="${classes.dir}"/>
<javac srcdir="${src.dir}" destdir="${classes.dir}" classpathref="project.class.path" debug="true"
verbose="false" followsymlinks="true" target="1.5" optimize="true"/>
- <echo>Finished OpenPCL Ant build.xml "compile" target.</echo>
+ <!-- Need to copy all the files in the src/.../images dir to the build/classes/.../images dir so that the
+ app can run under Eclipse when the .class files were build using the build.xml file compile target -->
+ <copy todir="${classes.dir}/${images.dir}">
+ <fileset dir="${src.dir}/${images.dir}"/>
+ </copy>
+ <echo>Finished OpenPCL Ant build.xml "compile" target.</echo>
</target>
<!-- jar.pclrenderimage -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|