I need to added a bin directory to jna.library.path to get Rococoa working on OSX but I can't seem to figure out how to do so. Inside java when I call System.getProperty("jna.library.path"); it returns null so this won't give me a clue about where to place the bin directory. Any ideas?
I tried that but that just brings up the man pages for java
Mike2012
2009-11-05 00:12:54
this was the command I tried:java -Djna.library.path=Library/Java/Extensions/bin
Mike2012
2009-11-05 00:13:27
Well, you have to add this option when you call the program, so java -Djna.library.path ClassName. If you run it from Eclipse or NetBeans, open options dialog for running the program and add -D(..) to the VM parameters.
tulskiy
2009-11-05 05:41:15