how to build static application?
I have opencv configured in MS Visual Studio 2012.I have created GUI for my application using MSVS 12. opencv is working fine. I want to make it standalone application so that computer without opencv can run it.
I don't know how to approach this problem. Please, could you give me any suggestions?
thanks in advance.
the prebuild libs are linked dynamically ( like there's a good dozen opencv* dlls that have to be present at runtime to make your prog work ). so you either have to
thanks i will try it out