-
Notifications
You must be signed in to change notification settings - Fork 52
/
setenv-jogl.sh
113 lines (95 loc) · 2.93 KB
/
setenv-jogl.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#! /bin/sh
function print_usage() {
echo "Usage: $0 {JOGL_ALL|JOGL_ALL_NOAWT|JOGL_ALL_MOBILE} [jogl-build-dir]"
}
if [ -z "$1" ] ; then
echo JOGL PROFILE missing
print_usage
return
fi
JOGL_PROFILE=$1
shift
JOGL_BUILDDIR=
if [ ! -z "$1" ] ; then
JOGL_BUILDDIR=$1
shift
fi
THISDIR=`pwd`
AUTOBUILD=0
if [ -e "$JOGL_BUILDDIR" ] ; then
JOGL_DIR=$JOGL_BUILDDIR/..
JOGL_BUILDDIR_BASE=`basename $JOGL_BUILDDIR`
else
AUTOBUILD=1
jpf=`find jogl/etc -name profile.jogl`
if [ -z "$jpf" ] ; then
jpf=`find . -name profile.jogl`
fi
if [ -z "$jpf" ] ; then
echo JOGL_DIR not found
echo JOGL_BUILDDIR $JOGL_BUILDDIR not exist or not given
print_usage
return
fi
JOGL_DIR=`dirname $jpf`/..
JOGL_BUILDDIR=$JOGL_DIR/lib
JOGL_BUILDDIR_BASE="."
fi
if [ $AUTOBUILD -eq 0 ] ; then
gpf=`find ../gluegen/make -name jogamp-env.xml`
if [ -z "$gpf" ] ; then
gpf=`find .. -name jogamp-env.xml`
fi
if [ -z "$gpf" ] ; then
echo GLUEGEN_BUILDDIR not found
print_usage
return
fi
GLUEGEN_DIR=`dirname $gpf`/..
GLUEGEN_BUILDDIR=$GLUEGEN_DIR/$JOGL_BUILDDIR_BASE
if [ ! -e "$GLUEGEN_BUILDDIR" ] ; then
echo GLUEGEN_BUILDDIR $GLUEGEN_BUILDDIR does not exist
print_usage
return
fi
GLUEGEN_JAR=$GLUEGEN_BUILDDIR/gluegen-rt.jar
GLUEGEN_OS=$GLUEGEN_BUILDDIR/obj
JUNIT_JAR=$GLUEGEN_DIR/make/lib/junit-4.5.jar
else
GLUEGEN_BUILDDIR=$JOGL_BUILDDIR
GLUEGEN_JAR=$JOGL_BUILDDIR/gluegen-rt.jar
GLUEGEN_OS=$JOGL_BUILDDIR
JUNIT_JAR=$GLUEGEN_DIR/junit-4.5.jar
fi
if [ -z "$ANT_PATH" ] ; then
ANT_JARS=
else
ANT_JARS=$ANT_PATH/lib/ant.jar:$ANT_PATH/lib/ant-junit.jar
fi
DEMOS_BUILDDIR=$THISDIR/$JOGL_BUILDDIR_BASE
echo JOGL AUTOBUILD: $AUTOBUILD
echo GLUEGEN BUILDDIR: $GLUEGEN_BUILDDIR
echo JOGL DIR: $JOGL_DIR
echo JOGL BUILDDIR: $JOGL_BUILDDIR
echo JOGL BUILDDIR BASE: $JOGL_BUILDDIR_BASE
echo JOGL PROFILE: $JOGL_PROFILE
echo DEMOS BUILDDIR: $DEMOS_BUILDDIR
J2RE_HOME=$(which java)
JAVA_HOME=$(which javac)
CP_SEP=:
. $JOGL_DIR/etc/profile.jogl $JOGL_PROFILE $JOGL_BUILDDIR
SWT_CLASSPATH=$HOME/.java/swt.jar
LIB=$THISDIR/lib
CLASSPATH=.:$DEMOS_BUILDDIR/jogl-demos.jar:$DEMOS_BUILDDIR/jogl-demos-util.jar:$DEMOS_BUILDDIR/jogl-demos-data.jar:$GLUEGEN_JAR:$JOGL_CLASSPATH:$SWT_CLASSPATH:$JUNIT_JAR:$ANT_JARS
for i in $LIB/*jar ; do
CLASSPATH=$CLASSPATH:$i
done
export CLASSPATH
# export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GLUEGEN_OS:$JOGL_LIB_DIR
# export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$GLUEGEN_OS:$JOGL_LIB_DIR
echo CLASSPATH: $CLASSPATH
echo
echo MacOSX REMEMBER to add the JVM arguments "-XstartOnFirstThread -Djava.awt.headless=true" for running demos without AWT, e.g. NEWT
echo MacOSX REMEMBER to add the JVM arguments "-XstartOnFirstThread -Djava.awt.headless=true com.jogamp.newt.util.MainThread" for running demos with NEWT
PATH=$J2RE_HOME/bin:$JAVA_HOME/bin:$PATH
export PATH