Include and "installation" .msi in custom module

Hello,

We have created a component module that use a free library. We have the .jar files include in the module. When we open the project from another PC, the project throws an error because it cannot find some .dll but if we install the free library (with his .msi) the project opens correctly.

How can we avoid to make a manually instalation of the free library in a new PC?

Thank you,

You can’t really do anything with the .msi file, but if you package just the DLL with your module you might be able to modify your code to load it directly with https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#load-java.lang.String-