diff options
author | Sven Gothel <[email protected]> | 2010-05-05 15:14:51 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-05 15:14:51 +0200 |
commit | 574a772703531da2854a566662af9c8b8f9770fe (patch) | |
tree | 7c885e097e82f0eb4eed56980b8fc65e49e013f6 /etc | |
parent | 862c0e0301f5d18f246019a5261c3265143c0d3d (diff) |
Add JOGL_ALLALL profile for scripting, to use the <module>.all.jar bundles
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/profile.jogl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/etc/profile.jogl b/etc/profile.jogl index 025b74dd8..4d24c4714 100755 --- a/etc/profile.jogl +++ b/etc/profile.jogl @@ -2,7 +2,7 @@ function print_usage() { - echo "Usage: $0 {JOGL_ALL|JOGL_ALL_NOAWT|JOGL_ES1_MIN|JOGL_ES1_MAX|JOGL_ES2_MIN|JOGL_ES2_MAX|JOGL_GL2ES12_MIN|JOGL_GL2ES12_MAX|JOGL_GLDESKTOP_MIN|JOGL_GLDESKTOP_MAX} [jogl-build-dir]" + echo "Usage: $0 {JOGL_ALLALL|JOGL_ALL|JOGL_ALL_NOAWT|JOGL_ES1_MIN|JOGL_ES1_MAX|JOGL_ES2_MIN|JOGL_ES2_MAX|JOGL_GL2ES12_MIN|JOGL_GL2ES12_MAX|JOGL_GLDESKTOP_MIN|JOGL_GLDESKTOP_MAX} [jogl-build-dir]" } function concat_jogl_list() @@ -97,6 +97,9 @@ export JOGL_LIB_DIR if [ ! -z "$JOGL_PROFILE" ] ; then case "$JOGL_PROFILE" in + JOGL_ALLALL) + JOGL_CLASSPATH=$(concat_jogl_list $JOGL_BUILD_DIR gluegen-rt.jar nativewindow.all.jar jogl.all.jar newt.all.jar $JOGL_TEST) + ;; JOGL_ALL) JOGL_CLASSPATH=$(concat_jogl_list $JOGL_BUILD_DIR $JOGL_JAR_ALL $JOGL_TEST) ;; |