blob: 11d2a64cc87d5b3a22b70b77c871772ee7cde087 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
# $0 -Dmain.class=com.jogamp.opencl.demos.bitonicsort.BitonicSort run
# $0 -Dmain.class=com.jogamp.opencl.demos.julia3d.Julia3d run
# $0 -Dmain.class=com.jogamp.opencl.demos.joglinterop.GLCLInteroperabilityDemo run
export SOURCE_LEVEL=1.8
export TARGET_LEVEL=1.8
export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar
BUILD_ARCHIVE=true \
ant \
-Drootrel.build=build-x86_64 \
$* 2>&1 | tee make.jogl.all.linux-x86_64.log
|