diff options
author | Sven Gothel <[email protected]> | 2010-11-12 00:19:44 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-12 00:19:44 +0100 |
commit | b735755815312b5fe2c003642de60711be1cd645 (patch) | |
tree | bd794e0e81df7e651a5070b1bda7b87da31e0024 /src/java/com/jogamp/gluegen | |
parent | a70920d7509daf12b9da47b526b941054a82b708 (diff) |
New: JogampVersion, providing generic information for Jogamp JAR archives; VersionInfo -> GlueGenVersion
JogampVersion, providing generic information for Jogamp JAR archives
Accessor to the Jogamp specific manifest additions, ie branch and commit.
Also provides convenient attribute access and version dump methods.
Diffstat (limited to 'src/java/com/jogamp/gluegen')
-rw-r--r-- | src/java/com/jogamp/gluegen/GlueGen.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/java/com/jogamp/gluegen/GlueGen.java b/src/java/com/jogamp/gluegen/GlueGen.java index 7a0ed3c..eccd1ca 100644 --- a/src/java/com/jogamp/gluegen/GlueGen.java +++ b/src/java/com/jogamp/gluegen/GlueGen.java @@ -39,6 +39,7 @@ */ package com.jogamp.gluegen; +import com.jogamp.common.util.GlueGenVersion; import java.io.*; import java.util.*; @@ -307,6 +308,7 @@ public class GlueGen implements GlueEmitterControls { public static void main(String... args) { if (args.length == 0) { + System.err.println(GlueGenVersion.getInstance().getInfo(null)); usage(); } |