I'm working on a game that uses LWJGL and thus requires native libraries specific to each platform. On this page, the author shows how to use the <nativelib> tag with Java Webstart to include JARs containing the appropriate native libraries. I'm trying to do something similar, but without using Webstart.

I tried adding the native library JARs to my main executable JAR's classpath, but that didn't work. Currently, the native libraries just sit in the same directory as the main JAR and that works fine, but I'd like to make it a bit tidier.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You have to use the JVM argument -Djava.library.path=/path/to/libs

link|improve this answer
feedback

Generate your jar, then add a script containing something like the following:

#!/bin/bash
java -Djava.libraray.path=. -jar your.jar

Asserting that the native libs are placed in the same folder as your application jar file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.