You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/build/building-c-cpp-programs.md
+16-14Lines changed: 16 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,29 +40,31 @@ translation.priority.ht:
40
40
- "zh-tw"
41
41
---
42
42
# Building C/C++ Programs
43
+
43
44
You can build Visual C++ projects either in Visual Studio or on the command line. The Visual Studio IDE uses [MSBuild](../build/msbuild-visual-cpp.md) 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](../build/nmake-reference.md). For an overview about how to use [!INCLUDE[vsprvs](../assembler/masm/includes/vsprvs_md.md)] to build projects and solutions, see [Compiling and Building](/visualstudio/ide/compiling-and-building-in-visual-studio).
44
45
45
46
## In This Section
46
-
[Building C++ Projects in Visual Studio](../ide/building-cpp-projects-in-visual-studio.md)
47
-
Discusses how to use the Visual Studio IDE to build your C/C++ project.
47
+
48
+
[Building C++ Projects in Visual Studio](../ide/building-cpp-projects-in-visual-studio.md)
49
+
Discusses how to use the Visual Studio IDE to build your C/C++ project.
48
50
49
-
[Build C/C++ code on the command line](../build/building-on-the-command-line.md)
50
-
Discusses how to use the C/C++ command-line compiler and build tools that are included in Visual Studio.
51
+
[Build C/C++ code on the command line](../build/building-on-the-command-line.md)
52
+
Discusses how to use the C/C++ command-line compiler and build tools that are included in Visual Studio.
51
53
52
-
[Building C/C++ Isolated Applications and Side-by-side Assemblies](../build/building-c-cpp-isolated-applications-and-side-by-side-assemblies.md)
53
-
Describes the deployment model for Windows Desktop applications, based on the idea of isolated applications and side-by-side assemblies.
54
+
[Building C/C++ Isolated Applications and Side-by-side Assemblies](../build/building-c-cpp-isolated-applications-and-side-by-side-assemblies.md)
55
+
Describes the deployment model for Windows Desktop applications, based on the idea of isolated applications and side-by-side assemblies.
54
56
55
-
[C/C++ Building Reference](../build/reference/c-cpp-building-reference.md)
56
-
Provides links to reference articles about program building in C++, compiler and linker options, and various build tools.
57
+
[C/C++ Building Reference](../build/reference/c-cpp-building-reference.md)
58
+
Provides links to reference articles about program building in C++, compiler and linker options, and various build tools.
57
59
58
-
[Configuring Programs for 64-Bit](../build/configuring-programs-for-64-bit-visual-cpp.md)
59
-
Describes how to configure both Visual Studio and the command line to use the 64-bit toolset and how to target 64-bit architectures, and discusses common migration issues when code is moved to 64-bit architectures.
60
+
[Configure Visual C++ for 64-bit, x64 targets](../build/configuring-programs-for-64-bit-visual-cpp.md)
61
+
Describes how to configure both Visual Studio and the command line to use the 64-bit toolset and how to target 64-bit architectures, and discusses common migration issues when code is moved to 64-bit architectures.
60
62
61
-
[Configuring Programs for ARM Processors](../build/configuring-programs-for-arm-processors-visual-cpp.md)
62
-
Describes the conventions used by ARM processors, and discusses common migration issues when code is moved to ARM architectures.
63
+
[Configure Visual C++ for ARM processors](../build/configuring-programs-for-arm-processors-visual-cpp.md)
64
+
Describes the conventions used by ARM processors, and discusses common migration issues when code is moved to ARM architectures.
63
65
64
-
[Configuring Programs for Windows XP](../build/configuring-programs-for-windows-xp.md)
65
-
Describes how to set the Platform Toolset to target Windows XP development.
66
+
[Configuring Programs for Windows XP](../build/configuring-programs-for-windows-xp.md)
67
+
Describes how to set the Platform Toolset to target Windows XP development.
66
68
67
69
## Related Sections
68
70
[Compiling and Building](/visualstudio/ide/compiling-and-building-in-visual-studio)
0 commit comments