blob: 858ed5fd812aaf952c4ad4c022c937c9b3f83526 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/bash
SDIR=`dirname $0`
if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86.sh ] ; then
. $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86.sh
fi
export SWT_CLASSPATH=`pwd`/lib/swt/gtk-linux-x86/swt-debug.jar
. $SDIR/tests.sh `which java` -d32 ../build-x86 $*
|