This question already has an answer here:
- Should I compile with /MD or /MT? 6 answers
My VC++ MFC solution includes four project.
- Two project build as DLLs
- One project build as Static Lib
- One project build as exe with using above three libraries.
I need to host this application without CLR support in windows XP. so I use configuration Use of MFC as Use MFC in a Static Library in all four project.
So my question is what should be the C++-> Code Genaration Configuration for each project.
error LNK2005: __encode_pointer already defined in MSVCRT.lib(MSVCR90.dll). I think because static lib already include with a MSVCRT.lib. So this is quit conflicts. So I need some direct answer if some one there clearly understand this concept. I think there should be some straight forward rule for this matter. – Nayana Adassuriya Feb 18 at 9:03