Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Static Runtime Library Linking for Visual C++ Express 2008

How do you tell Visual C++ Express 2008 to statically link runtime libraries instead of dynamically? My exes do not currently run on computers w/o some sort of VS installed and I would love to change that. :)

like image 888
bobber205 Avatar asked Jan 09 '10 22:01

bobber205


1 Answers

Sorry, I do not have VC++ Express to test, but in Standard edition I use Project Properties -> Configuration Properties -> C/C++ -> Code Generation -> Runtime Library. Dll and Dll Debug are for dynamic linking.

like image 182
ironic Avatar answered Oct 22 '22 18:10

ironic