LWJGL Forum

Programming => Lightweight Java Gaming Library => Topic started by: T-Dog on January 17, 2006, 19:03:45

Title: A quick question...
Post by: T-Dog on January 17, 2006, 19:03:45
I am using netbeans 4.1 and have succefully setup my library, however I am not positive as to how to point theIDE to the .dll's in the new netbeans envirnment.


Thanks
T-dog
Title: A quick question...
Post by: princec on January 17, 2006, 19:38:01
You need a runtime JVM parameter specified when you launch your game:

-Djava.library.path=<path to lwjgl.dll>


Cas :)
Title: A quick question...
Post by: T-Dog on January 17, 2006, 21:57:52
Just to make sure I am doing it right the path to the .dll's is just to the native folder, correct?
Title: A quick question...
Post by: princec on January 17, 2006, 22:50:08
Yes, that's right.

Cas :)
Title: A quick question...
Post by: T-Dog on January 17, 2006, 23:03:58
Ok I got everything working, thanks.