diff options
author | kcr <kcr@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2006-03-07 00:59:49 +0000 |
---|---|---|
committer | kcr <kcr@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2006-03-07 00:59:49 +0000 |
commit | cb208537519bb37d30325ada8d2f2af283306e73 (patch) | |
tree | 9d5c79b31486481b0f330e8b5454aafb8943c910 | |
parent | 27d67dac08b9afab2efe77af7d010184373c0bc6 (diff) |
Change zip target to zip up directories relative to parent of j3d-examples (so that all files are in j3d-examples/ when unzipped)
-rw-r--r-- | build.xml | 16 | ||||
-rw-r--r-- | nbproject/project.xml | 1 |
2 files changed, 9 insertions, 8 deletions
@@ -54,7 +54,7 @@ <property name="build" location="build"/> <property name="dist" location="dist"/> <property name="output.jar" location="dist/j3d-examples.jar"/> - <property name="output.zip" location="dist/j3d-examples-src.zip"/> + <property name="output.zip" location="dist/j3d-examples-1_4_0-src.zip"/> </target> <target name="compile" depends="init"> @@ -99,13 +99,13 @@ <target name="zip" depends="init"> <mkdir dir="${dist}"/> <zip destfile="${output.zip}"> - <fileset dir="." includes="src/**"/> - <fileset dir="." includes="COPYRIGHT.txt"/> - <fileset dir="." includes="README*.*"/> - <fileset dir="." includes="*LICENSE*.*"/> - <fileset dir="." includes="build.xml"/> - <fileset dir="." includes="manifest.mf"/> - <fileset dir="." includes="nbproject/**" excludes="nbproject/private/**"/> + <fileset dir=".." includes="j3d-examples/src/**"/> + <fileset dir=".." includes="j3d-examples/COPYRIGHT.txt"/> + <fileset dir=".." includes="j3d-examples/README*.*"/> + <fileset dir=".." includes="j3d-examples/*LICENSE*.*"/> + <fileset dir=".." includes="j3d-examples/build.xml"/> + <fileset dir=".." includes="j3d-examples/manifest.mf"/> + <fileset dir=".." includes="j3d-examples/nbproject/**" excludes="j3d-examples/nbproject/private/**"/> </zip> </target> diff --git a/nbproject/project.xml b/nbproject/project.xml index 411d578..8292987 100644 --- a/nbproject/project.xml +++ b/nbproject/project.xml @@ -50,6 +50,7 @@ <java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/1"> <compilation-unit> <package-root>src/classes</package-root> + <classpath mode="compile">../j3d-core/build/linux-i586/debug/lib/ext/j3dcore.jar:../j3d-core/build/linux-i586/debug/lib/ext/j3dutils.jar:../vecmath/build/debug/lib/ext/vecmath.jar</classpath> <source-level>1.4</source-level> </compilation-unit> </java-data> |