VC8 / CLI / MFC linking question

  • Thread starter Thread starter Scott McFadden
  • Start date Start date
S

Scott McFadden

I have a managed C++ DLL (VC8) that I would like to statically link with MFC
(it consumes both native and managed resources).

What project settings must i specify to produce a managed C++ DLL that is
statically linked with MFC? Is this even possible?

thanks

ScottM
 
Scott said:
I have a managed C++ DLL (VC8) that I would like to statically link with MFC
(it consumes both native and managed resources).

What project settings must i specify to produce a managed C++ DLL that is
statically linked with MFC? Is this even possible?

Scott:

Managed applications must use dynamic linking of CRT and MFC.
 
Back
Top