Matthew Sanford
Matthew Sanford

Reputation: 1099

How can I get Visual Studio 2010 to not include ANY dependencies to the MSVC runtime engine

I need to make an app that runs purely by loading Win32 dlls and I do not want any dependencies to be associated with it. This could be done in VS 6 but I cant seem to figure out how you do it in VS 2010.

Upvotes: 0

Views: 77

Answers (1)

ildjarn
ildjarn

Reputation: 62995

Pass the /MT compiler flag.

Upvotes: 2

Related Questions