Reputation: 1388
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
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