I\'m trying to start my java game but I have some troubles with the java command line:
Here is what I type:
C:\\>java -Djava.library.path=%cd%\\lib
You use the java.library.path
option to specify the location of native libraries to load. In the location pointed to by that option you would place all dll
or .so
files required by LWJGL. On the other hand, you need to make sure that all required JAR files are on your classpath, via the -classpath
option. Currently, you have your JAR files in the wrong directory.