Reputation: 3340
I have developed a C++ Project using opencv libraries in Visual Studio. How to make an exe portable installation package out of it by including all the libraries?
Upvotes: 0
Views: 324
Reputation: 523
You should statically link the opencv library in your project. If you use Visual Studio 2010 you could refer to this link http://varuagdiary.blogspot.it/2012/12/static-linking-opencv-in-visual-studio.html for more details.
Upvotes: 1