aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorjada <jada@28c7f869-5b4e-e670-f602-82bfaf57f300>2006-03-01 07:07:39 +0000
committerjada <jada@28c7f869-5b4e-e670-f602-82bfaf57f300>2006-03-01 07:07:39 +0000
commit374714fa97f3aeacee236e3a019b7c252cb671c0 (patch)
treefb114eda87c590db52b7408b5cf0d5f95b41ba36 /build.xml
parent800d2e0d5d0116046ba501f2c76dc5ab362e4563 (diff)
1) Added a new examples : dot3/Dot3Demo and glsl_shader/VertexAttrTest
2) Converted SphereMotion, PureImmediate and PureImeediateStereo to use JFrame instead of MainFrame.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 2774ff1..b6d17a1 100644
--- a/build.xml
+++ b/build.xml
@@ -180,6 +180,13 @@
</java>
</target>
+ <target name="run.Dot3Demo" depends="init-run">
+ <java fork="true"
+ classname="org.jdesktop.j3d.examples.dot3.Dot3Demo">
+ <classpath refid="run.classpath"/>
+ </java>
+ </target>
+
<target name="run.FourByFour" depends="init-run">
<java fork="true"
classname="org.jdesktop.j3d.examples.four_by_four.FourByFour">
@@ -257,6 +264,26 @@
</java>
</target>
+ <target name="run.VertexAttrTest" depends="init-run">
+ <java fork="true"
+ classname="org.jdesktop.j3d.examples.glsl_shader.VertexAttrTest">
+ <classpath refid="run.classpath"/>
+ </java>
+ </target>
+
+ <target name="run.PureImmediate" depends="init-run">
+ <java fork="true"
+ classname="org.jdesktop.j3d.examples.pure_immediate.PureImmediate">
+ <classpath refid="run.classpath"/>
+ </java>
+ </target>
+
+ <target name="run.PureImmediateStereo" depends="init-run">
+ <java fork="true"
+ classname="org.jdesktop.j3d.examples.pure_immediate.PureImmediateStereo">
+ <classpath refid="run.classpath"/>
+ </java>
+ </target>
<target name="run.SphereMotion" depends="init-run">
<java fork="true"
classname="org.jdesktop.j3d.examples.sphere_motion.SphereMotion">