Frankie Drake
Frankie Drake

Reputation: 1388

Static and dynamic MFC linking

How should I link my program with MFC in Visual Studio 2010 if I want user could run my program without having Visual Studio and MFC libaray. Thanx

Upvotes: 0

Views: 822

Answers (1)

Bo Persson
Bo Persson

Reputation: 92341

Static linking is one way. Then you executable will contain everything, but be rather large.

Having the customers install the dynamic libraries is another. They can get them from here http://www.microsoft.com/en-us/download/details.aspx?id=5555

Upvotes: 1

Related Questions