I'm using Netbeans 6.7.1 and I have an application which uses the JOGL libraries. I can run my application just fine, but when I try to build it, I get this error:
C:\Documents and Settings\Administrator\My Documents\NetBeansProjects\RAGEUI\nbproject\build-jogl-template-impl.xml:12: The following error occurred while executing this line:
C:\Documents and Settings\Administrator\My Documents\NetBeansProjects\RAGEUI\nbproject\build-jogl-template-impl.xml:85: C:\Program Files\JOGL\jogl-1.1.1-windows-i586\lib;C:\Program Files\JOGL\jogl-1.1.1-windows-i586\lib\gluegen-rt.jar;C:\Program Files\JOGL\jogl-1.1.1-windows-i586\lib\jogl.jar-natives-windows-i586 not found.
If you notice the last part of the last line, jogl.jar-natives-windows-i586 does not exist and the file is actually named jogl-natives-windows-i586.jar. The line in build-jogl-template-impl.xml that it seems to hang up on is this:
<pathconvert pathsep=" " property="platformFiles">
<path>
<fileset dir="${libs.JOGL.classpath}-natives-${natives.platform}" defaultexcludes="yes"/>
<fileset dir="${libs.GLUEGEN-RT.classpath}-natives-${natives.platform}" defaultexcludes="yes"/>
</path>
</pathconvert>
I'm a bit stumped on this one and would appreciate anyones help. Thanks!