aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2015-04-19 20:07:18 -0700
committerHarvey Harrison <[email protected]>2015-04-19 20:07:18 -0700
commit0caa19463a539270cbd65c3544b735aed8207258 (patch)
tree6fc43d20794167a9f451b7663145bd4a4e6a03d6
parentd4925af4fb2eda60837d37e8be6f62fd562fb23c (diff)
README: expand the build instructions to include the jogl jars
Signed-off-by: Harvey Harrison <[email protected]>
-rw-r--r--README-build.html9
-rw-r--r--build.xml4
2 files changed, 8 insertions, 5 deletions
diff --git a/README-build.html b/README-build.html
index 9734c16..c12cd7f 100644
--- a/README-build.html
+++ b/README-build.html
@@ -23,14 +23,17 @@ repositories:<br>
<p>These three top-level directories must be named exactly as
shown above and they must be sibling directories. To ensure this, run
the git clone command for each of the respositories from the same
-parent
-directory. For example:<br>
+parent directory. You will also need the gluegen and jogl builds for at least
+version 2.3.1. For example:<br>
</p>
<ul>
<code>cd &lt;j3d-root-dir&gt;</code><br>
<code>git clone git://github.com/hharrison/vecmath</code><br>
<code>git clone git://github.com/hharrison/java3d-core j3d-core</code><br>
- <code>git clone git://github.com/hharrison/java3d-utils j3d-utils</code>
+ <code>git clone git://github.com/hharrison/java3d-utils j3d-utils</code><br>
+ <code>mkdir jogl-v2.3.1</code><br>
+ <code>curl http://jogamp.org/deployment/v2.3.1/jar/gluegen-rt.jar > jogl-v2.3.1/gluegen-rt.jar</code><br>
+ <code>curl http://jogamp.org/deployment/v2.3.1/jar/jogl-all.jar > jogl-v2.3.1/jogl-all.jar</code>
</ul>
<p>NOTE: you must first build the javax.vecmath package before building
the javax.media.j3d and com.sun.j3d.* packages. See the <a
diff --git a/build.xml b/build.xml
index 31cc73e..1ce5fab 100644
--- a/build.xml
+++ b/build.xml
@@ -11,8 +11,8 @@
<property name="j3dtools.src.dir" location="${j3dtools.dir}/src"/>
<property name="vecmath.lib" location="../vecmath/build/jars/vecmath.jar"/>
- <property name="jogl.lib" location="../../jogl-v2.3.1/jogl-all.jar"/>
- <property name="gluegen.lib" location="../../jogl-v2.3.1/gluegen-rt.jar"/>
+ <property name="jogl.lib" location="../jogl-v2.3.1/jogl-all.jar"/>
+ <property name="gluegen.lib" location="../jogl-v2.3.1/gluegen-rt.jar"/>
<property name="version_base" value="1.6.0"/>
<property name="build.spec.title" value="3D Graphics API for the Java Platform"/>