Hey All,
I have a noob question for everybody. I’m trying to put my game engine within an executable JAR. My JAR contains a manifest file that properly describes where my main starting class is. As well, the manifest file provides a classpath like the following:
Class-Path: lib/jogl/gluegen-rt.jar lib/jogl/jogl.jar lib/log4j/log4j-1.2.15.jar
However, when I try to execute my JAR, nothing happens. I don’t get any errors and I don’t get any program starting. However, my program works fine within my Eclipse IDE but for some reason outside of the IDE in my Windows environment nothing works. Would it have something to do with the 4 dll files provided with JOGL? Do I need to somehow reference those with my JAR or place them somewhere in Windows?
Thanks all.