I recently got into LWJGL, and it's working fine in the IDE. But when I export my project to a JAR file, it's not working similarly to in the IDE.
I know how I can include my LWJGL JAR in the game JAR file, but I want the natives in there as well so people don't need to download lots of files to run my game.
How can I do this in IntelliJ?
When I run the JAR file, I get a java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
error. I know I can do -Djava.library-path="<path_to_native>"
, but I want my program to be easy-to-use for others. The easiest would be to just have one file - the JAR. So is it possible to get the natives inside the JAR? - how?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…