I have created a DLL by Visual Studio and wrote a JNI interface to use that DLL from Java app. I have successfully run DLL from my PC. But when I run Java app from another machine, I got this error: java.lang.UnsatisfiedLinkError: C:\Users\user.jss\windows\project.dll: Can't find dependent libraries. The problem solved when I install Visual Studio on other PC. Is there any setting in Visual Studio to remove this dependency when creating DLL?
Appreciate your help.