diff options
author | Sven Gothel <[email protected]> | 2010-11-07 08:28:31 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-11-15 16:09:28 +0100 |
commit | e98aa3caa114133080e4e1668bfa4c828d5c42bf (patch) | |
tree | 3998800a7ecb3fc195ce64d15e410c9a18fe6cc6 /build.xml | |
parent | 09cba4571143544817a45657b04357e4419545f5 (diff) |
1st fixes for new gluegen
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -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 - - - "/> |