diff options
author | Kenneth Russel <[email protected]> | 2006-01-15 03:25:55 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-01-15 03:25:55 +0000 |
commit | 61d2579d7e6ccb1ac2fbb48d0410390a697bec16 (patch) | |
tree | a83ddfcf708e6572af0be2d4de6c7d3340db230e /make/validate-properties.xml | |
parent | aad7268baef8142e33815a02034ef6af56442e63 (diff) |
Moved GlueGen out of the JOGL workspace and into its own project.
Restructured JOGL and JOAL build processes to separately invoke
GlueGen's main build.xml before using it to generate their code.
Refactored OS/CPU detection code into gluegen-cpptasks.xml build file
in GlueGen workspace, which is now imported by both the JOGL and JOAL
build processes. Unfortunately it seems to be somewhat difficult to
completely factor out the C compiler configuration into the GlueGen
workspace so this has been left for a later date. Added missed
ALProcAddressLookup file to JOAL workspace. Updated JOGL and JOAL
build documentation. More documentation for the GlueGen workspace is
forthcoming.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@542 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/validate-properties.xml')
-rw-r--r-- | make/validate-properties.xml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/make/validate-properties.xml b/make/validate-properties.xml index 0b5a66bf6..4a2d386c9 100644 --- a/make/validate-properties.xml +++ b/make/validate-properties.xml @@ -48,11 +48,9 @@ - builds to fail since if this Java process has the jar file open - we can not overwrite it. --> - <target name="test.for.jogl.jar"> - <available property="jogl.jar.on.class.path" classname="net.java.games.jogl.GL" /> - </target> - <target name="java.class.path.validate" depends="test.for.jogl.jar" if="jogl.jar.on.class.path"> - <fail> + <target name="java.class.path.validate"> + <available property="jogl.jar.on.class.path" classname="javax.media.opengl.GL" /> + <fail if="jogl.jar.on.class.path"> ****************************************************************** ** Your CLASSPATH environment variable appears to be set (some ** @@ -60,7 +58,7 @@ ** cause the build to fail. Please unset your CLASSPATH ** ** variable and restart the build. ** ****************************************************************** - </fail> + </fail> </target> <!-- ================================================================== --> |