Using JNA, the documentation says:
Make your target library available to your Java program. There are two ways to do this: The preferred method is to set the
jna.library.path
system property to the path to your target library. This property is similar tojava.library.path
but only applies to libraries loaded by JNA.
What does this actually mean? How do I set the jna.library.path
system property? My app needs to reference Kernel32.dll
Thanks