summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--THIRDPARTY-LICENSE-3DLABS.txt4
-rw-r--r--THIRDPARTY-LICENSE-VIEWPOINT.txt22
-rw-r--r--build.xml16
3 files changed, 39 insertions, 3 deletions
diff --git a/THIRDPARTY-LICENSE-3DLABS.txt b/THIRDPARTY-LICENSE-3DLABS.txt
index 90a7ec1..394e2c6 100644
--- a/THIRDPARTY-LICENSE-3DLABS.txt
+++ b/THIRDPARTY-LICENSE-3DLABS.txt
@@ -1,7 +1,7 @@
The following additional provisions apply to third party software
included as part of this product.
- src/GLSLShaderTest/
+ src/classes/org/jdesktop/j3d/examples/glsl_shader/
dimple.frag - shader for ObjLoadGLSL.java
dimple.vert - shader for ObjLoadGLSL.java
polkadot3d.frag - shader for ObjLoadGLSL.java
@@ -44,4 +44,4 @@ included as part of this product.
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE *
* POSSIBILITY OF SUCH DAMAGE. *
* *
-************************************************************************/ \ No newline at end of file
+************************************************************************/
diff --git a/THIRDPARTY-LICENSE-VIEWPOINT.txt b/THIRDPARTY-LICENSE-VIEWPOINT.txt
new file mode 100644
index 0000000..a7420da
--- /dev/null
+++ b/THIRDPARTY-LICENSE-VIEWPOINT.txt
@@ -0,0 +1,22 @@
+The following additional provisions apply to third party software
+included as part of this product.
+
+ src/resources/geometry/
+ beethoven.obj
+ galleon.obj
+ p51_mustang.obj
+
+# Courtesy of:
+#
+# Viewpoint Animation Engineering
+# 870 West Center
+# Orem, Utah 84057
+# (801)224-2222
+# 1-800-DATASET
+#
+# (c) Copyright 1992 Viewpoint Animation Engineering Inc.
+# Sun Microsystems has been authorized to freely distribute
+# these Datasets. They are provided for unlimited use in
+# existing or modified form. The actual Dataset (ie, geometry)
+# may not, however, be resold in existing or modified form.
+#
diff --git a/build.xml b/build.xml
index 9bcdb2c..8f662af 100644
--- a/build.xml
+++ b/build.xml
@@ -54,6 +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"/>
</target>
<target name="compile" depends="init">
@@ -97,7 +98,20 @@
</jar>
</target>
- <target name="all" depends="init,jar">
+ <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/**"/>
+ </zip>
+ </target>
+
+ <target name="all" depends="init,jar,zip">
</target>
<target name="clean" depends="init">