Building C/C++ Programs

You can build Visual C++ projects either in Visual Studio or on the command line. The Visual Studio IDE uses MSBuild to build projects and solutions. On the command line, you can use the C/C++ compiler (cl.exe) and linker (link.exe) to build simple projects. To build more complex projects on the command line, you can use MSBuild or NMAKE. For an overview about how to use Visual Studio to build projects and solutions, see Building Applications in Visual Studio.

In This Section