diff options
author | Kenneth Russel <[email protected]> | 2003-09-10 01:18:39 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2003-09-10 01:18:39 +0000 |
commit | 9990105d172a87a3a5436a23f0d1c63d3d2de4d4 (patch) | |
tree | f129f8c210f179b031a2dee0c046e61fef6e43ac /doc/HowToBuild.html | |
parent | cae56081999ec84c8cde0f7b7454b92e85fadfa8 (diff) |
Added Gerard Ziemski's changes to the build process on OS X to look
for jogl.properties in the Library/Java subdirectory of the user's
home directory. Updated the build documentation.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@64 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'doc/HowToBuild.html')
-rw-r--r-- | doc/HowToBuild.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/HowToBuild.html b/doc/HowToBuild.html index 59a4aa360..1f9a0e323 100644 --- a/doc/HowToBuild.html +++ b/doc/HowToBuild.html @@ -17,8 +17,12 @@ OpenGL binding from a fresh copy of the source distribution: <LI> <B>Unset your CLASSPATH environment variable:</B> <br> The Ant build requires that the Jogl jars not be visible on the classpath. On Unix, type <code> unsetenv CLASSPATH </code> into a csh or tcsh shell, or <code> set CLASSPATH=; export CLASSPATH </code> into a Bourne shell. On Windows, type <code> set CLASSPATH= </code> into a command prompt. - <LI> <B>Copy and edit jogl.properties:</B> <br> Copy <b>make/jogl.properties</b> into your home directory (pointed to by the Java system property <b>user.home</b>). Edit the copy to change any settings that are necessary, in particular the location of the ANTLR jar file (typically <b>$HOME/antlr-2.7.2/antlr.jar</b>). - + <LI> <B>Copy and edit jogl.properties:</B> <br> + <UL> + <LI> <B>On Windows and X11 platforms:</B> Copy <b>make/jogl.properties</b> into your home directory (pointed to by the Java system property <b>user.home</b>). + <LI> <B>On Mac OS X:</B> Copy <b>make/jogl.properties</b> into the <b>Library/Java</b> subdirectory of your home directory (pointed to by the Java system property <b>user.home</b>). + </UL> + Edit the copy to change any settings that are necessary, in particular the location of the ANTLR jar file (typically <b>$HOME/antlr-2.7.2/antlr.jar</b>). <LI> <B>Build the source tree:</B> <br> Open a command shell in the "make" directory of the source tree and type "ant [target]", where [target] is one of <code>linux</code>, <code>macosx</code>, <code>solaris</code>, <code>win32.vc6</code>, <code>win32.vc7</code>, or <code>win32.mingw</code>. <UL> <LI>The win32 targets require one of Microsoft Visual C++ 6, 7 (Visual Studio .NET) or the free MinGW (<a href="http://www.mingw.org/">http://www.mingw.org/</a>) compilers to be installed. Choose the appropriate target for the compiler desired. |