Hello,
You can use whatever method you want to load your libraries, including
using Loader.extractResource(), and calling System.load() on the
extracted file and what not, but for different platforms we need to
manage different binaries, which also have different prefixes and
suffixes appended to the library name...
If you want to use JavaCPP to take care of that for you, you can either
not use "-d" and "-o", leaving the Builder put the files in the right
packages, or you can include the libraries in the package namespace of
some class + "/" +
platform.name and call `Loader.loadLibrary(libname)`
from inside that class. That makes sense?
Samuel