summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-07 08:28:31 +0100
committerMichael Bien <[email protected]>2010-11-15 16:09:28 +0100
commite98aa3caa114133080e4e1668bfa4c828d5c42bf (patch)
tree3998800a7ecb3fc195ce64d15e410c9a18fe6cc6 /build.xml
parent09cba4571143544817a45657b04357e4419545f5 (diff)
1st fixes for new gluegen
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml11
1 files changed, 7 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 4580f106..8d5975db 100644
--- a/build.xml
+++ b/build.xml
@@ -26,7 +26,7 @@
<pathelement location="${antlr.jar}" />
</path>
- <taskdef name="gluegen" classname="com.sun.gluegen.ant.GlueGenTask" classpathref="gluegen.classpath" />
+ <taskdef name="gluegen" classname="com.jogamp.gluegen.ant.GlueGenTask" classpathref="gluegen.classpath" />
<!--OpenCL Impl including OpenGL interoperability-->
<dirset id="jocl.include.path" dir="${basedir}">
@@ -42,7 +42,8 @@
<gluegen src="resources/opencl.h"
config="resources/cl-if.cfg"
includeRefid="jocl.include.path"
- emitter="com.sun.gluegen.JavaEmitter">
+ emitter="com.jogamp.gluegen.JavaEmitter"
+ debug="false">
<classpath refid="gluegen.classpath" />
</gluegen>
@@ -50,7 +51,8 @@
<gluegen src="resources/opencl.h"
config="resources/clgl-if.cfg"
includeRefid="jocl.include.path"
- emitter="com.sun.gluegen.JavaEmitter">
+ emitter="com.jogamp.gluegen.JavaEmitter"
+ debug="false">
<classpath refid="gluegen.classpath" />
</gluegen>
@@ -58,7 +60,8 @@
<gluegen src="resources/opencl.h"
config="resources/cl-impl.cfg"
includeRefid="jocl.include.path"
- emitter="com.sun.gluegen.procaddress.ProcAddressEmitter">
+ emitter="com.jogamp.gluegen.procaddress.ProcAddressEmitter"
+ debug="false">
<classpath refid="gluegen.classpath" />
</gluegen>
<echo message=" - - - JOCL binding files generated - - - "/>