junxnone / xwiki

https://junxnone.github.io/xwiki/
0 stars 0 forks source link

Programing CPP STD MSVC #250

Open junxnone opened 1 year ago

junxnone commented 1 year ago

MSVC STL

C++ standard library Characteristics Option Preprocessor directives
libcpmt.lib Multithreaded, static link /MT _MT
msvcprt.lib Multithreaded, dynamic link (import library for msvcp.dll) /MD _MT, _DLL
libcpmtd.lib Multithreaded, static link /MTd _DEBUG, _MT
msvcprtd.lib Multithreaded, dynamic link (import library for msvcpd.dll) /MDd _DEBUG, _MT, _DLL

Reference