Problems opening c ++ software on another PC

0

I'm developing software in c ++ using Visual Studio 2015, and I'm using two external libraries OPENCV and FlyCapture2. I developed the software and it runs normally on my computer, but at the time of moving to another computer it says it is missing dll,

what I've already tried: I configured the include and library paths of release mode, generated the executable, installed the visual c ++ redisbutable, but even then, the program does not open on another computer.

What should I do?

    
asked by anonymous 12.04.2017 / 16:36

1 answer

0

There is a program called Dependency Walker , which can analyze the dependencies of an executable file. Try to open your program with it and then throw all the DLLs it points to in the same folder as your program (including Visual C ++ runtime).

I have never used these libraries, but I believe DLLs should be in the folder you compiled them.

    
12.04.2017 / 19:24