diff options
author | Sven Gothel <[email protected]> | 2011-08-05 05:46:31 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-05 05:46:31 +0200 |
commit | 8dbb09541973d33168430eac5eae092b99b1c106 (patch) | |
tree | 52a34b1a19507886081086adb7df9ee1515549ba /cvm-run-newt.sh | |
parent | 4882763851a38d979b2117a4e4fbf62683d9ff8b (diff) |
adapt to jogl's jnlp/jar reduction
Diffstat (limited to 'cvm-run-newt.sh')
-rwxr-xr-x | cvm-run-newt.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/cvm-run-newt.sh b/cvm-run-newt.sh deleted file mode 100755 index 5461573..0000000 --- a/cvm-run-newt.sh +++ /dev/null @@ -1,22 +0,0 @@ -#! /bin/sh - -CVM=$1 -shift - -BUILD_SUBDIR=$1 -shift - -if [ ! -x "$CVM" -o -z "$BUILD_SUBDIR" ] ; then - echo "Usage $0 CVM-Binary BUILD_SUB_PATH [-cpu <arch>] Main-Class" - echo "e.g. $0 ../CVM/bin/cvm build-x86 -cpu x86 test" - exit 1 -fi - -X_FLAGS= -if [ "$1" = "-cpu" ] ; then - shift - X_FLAGS="-Dos.arch=$1" - shift -fi - -$CVM $X_FLAGS -Djava.awt.headless=true -Dsun.boot.library.path=../jogl/$BUILD_SUBDIR/lib -Xbootclasspath/a:../gluegen/$BUILD_SUBDIR/gluegen-rt-cdc.jar -Xbootclasspath/a:../jogl/$BUILD_SUBDIR/nativewindow/nativewindow.all.cdc.jar -Xbootclasspath/a:../jogl/$BUILD_SUBDIR/jogl/jogl.all.cdc.jar -Xbootclasspath/a:../jogl/$BUILD_SUBDIR/newt/newt.all.cdc.jar -Xbootclasspath/a:$BUILD_SUBDIR/jogl-demos.jar com.jogamp.newt.util.MainThread $* 2>&1 | tee cvm-run-newt.log |