Multiple characters found?

I created my own library and compiled it as a static library in MSVC using the MD multi-threaded DLL. Then I compiled my application and turned on myLib.lib, and when I do this, I get tons of repeatedly defined characters related to MSVCRTLIB, what am I doing wrong?

thank

+3
source share
1 answer

The application and all libraries must be compiled with the same settings. Make sure they all use the MD parameter.

+4
source

All Articles