I am trying to use a program utilizing OpenCV on a PC that does not have OpenCV installed. Trying to start the program results in the following error:
"This program can't start because opencv_world320.dll is missing from your computer. Try reinstalling the program to fix the problem."
Now I know this normally happens if the correct libraries are not linked or linking was not static but as pre-built OpenCV 3.2 only uses a single library and after double checking that runtime library is set to /MT in VS2015 I have no idea why this error is still present.
Looking at the built .exe file in a PE Analyzer also shows that opencv_world320.dll is still listed as an import.
How to fix this?