EDN Admin
Well-known member
I have received a couple questions about "How do you build C++ projects in Windows without installing Visual Studio?". This video demonstrates the process but to explain it in a couple short steps: http://msdn.microsoft.com/en-us/windows/bb980924 Download and Install the Windows SDK * Open the Windows SDK command prompt** Browse to your project folder run " vcupdate <projectname>.vcproj" run "msbuild <projectname>.vcxproj *Make sure that you check to enable the Windows Native Code Development section on the installer. ** Although it is not a best practice, I elevated my priviledges for the command prompt when I did the demo because I wanted to show that projects build right out of the SDK. Had I copied the folder to my desktop, I would not have needed to run the Windows SDK command prompt priviledged. This task is really useful if you want to perform automated builds on your own machine or you need to perform builds on a machine that doesnt need Visual Studio, such as a build server. However, this is not really a substitution for having Visual Studio for development. For more information about building using the Windows SDK, see the http://blogs.msdn.com/b/windowssdk/archive/2008/01/11/how-to-build-from-the-windows-sdk-command-line.aspx Microsoft Windows SDK Blog . <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Feeds/RSS&WT.dl=0&WT.entryid=Entry:RSSView:48e31057cc1d4167b64a9e720017c2cc
View the full article
View the full article