Trouble creating game libary

Started by
0 comments, last by Zaris 11 years ago

I'm trying to create a basic lib using lwjgl.I created the jar and added to a new project. It seems to be working well, but when I go to run the program I get this error.

Exception in thread "main" java.lang.NoClassDefFoundError: org/lwjgl/LWJGLException
at GameTest.main(GameTest.java:9)
Caused by: java.lang.ClassNotFoundException: org.lwjgl.LWJGLException
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 1 more

Does anyone know what step I am missing?

Thanks.

Advertisement

Found my error, did not add the lwjgl libs to the new project. Is their a way to for the libary the include these files without having to add to the new project?

This topic is closed to new replies.

Advertisement