1 | initial version |
With static lib project property>Debug> C/C++>Code Generation>Runtime Library>Multi-threaded Debug (/MTd)
For dynamic (DLL) lib select Multi-threaded Debug DLL (/MDd)
.
in Release project select appropriate values for the same option
2 | No.2 Revision |
With static lib In Visual Studio, you have to right select the Runtime Library option in your application project. See below:project property>Debug> C/C++>Code Generation>Runtime Library>Multi-threaded Debug (/MTd)
For dynamic Go to Project Property > C/C++ > Code Generation > Runtime Library
and set
if you are using OpenCV Dynamic (DLL) lib select Lib
Multi-threaded Debug DLL (/MDd)
Multi-threaded DLL (/MD)
esle, with OpenCV Static Lib
in
Multi-threaded Debug (/MTd)
Multi-threaded (/MT)
3 | No.3 Revision |
In Visual Studio, you have to right select the Runtime Library option in your application project. See below:
Go to Project Property > C/C++ > Code Generation > Runtime Library
and set
if you are using OpenCV Dynamic (DLL) Lib
Multi-threaded Debug DLL (/MDd)
Multi-threaded DLL (/MD)
esle, else, with OpenCV Static Lib
Multi-threaded Debug (/MTd)
Multi-threaded (/MT)