Skip to content

Commit 930ccc1

Browse files
author
mikeblome
committed
titles and yml improvements
1 parent 940ee55 commit 930ccc1

3 files changed

Lines changed: 56 additions & 8 deletions

File tree

docs/_breadcrumb/toc.yml

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,49 @@
100100
tocHref: /cpp/build/
101101
tocHref: /cpp/build/building-c-cpp-programs
102102
items:
103+
- name: Visual Studio projects
104+
tocHref: /cpp/build/
105+
topicHref: /cpp/build/creating-and-managing-visual-cpp-projects
106+
items:
107+
- name: Set compiler and build properties
108+
tocHref: /cpp/build/
109+
topicHref: /cpp/build/working-with-project-properties
110+
- name: Custom Build Steps and Build Events
111+
tocHref: /cpp/build/
112+
topicHref: /cpp/build/understanding-custom-build-steps-and-build-events
113+
- name: Create a C++ Project from Existing Code
114+
tocHref: /cpp/build/
115+
topicHref: /cpp/build/how-to-create-a-cpp-project-from-existing-code
116+
- name: CMake projects
117+
tocHref: /cpp/build/
118+
topicHref: /cpp/build/cmake-tools-for-visual-cpp
119+
- name: Open Folder projects
120+
tocHref: /cpp/build/
121+
topicHref: /cpp/build/non-msbuild-projects
122+
- name: Release Builds
123+
tocHref: /cpp/build/
124+
topicHref: /cpp/build/release-builds
125+
- name: Use the MSVC toolset from the command line
126+
tocHref: /cpp/build/
127+
topicHref: /cpp/build/building-on-the-command-line
128+
- name: Use MSBuild from the command line
129+
tocHref: /cpp/build/
130+
topicHref: /cpp/build/msbuild-visual-cpp
131+
- name: Building C/C++ Isolated Applications and Side-by-side Assemblies
132+
tocHref: /cpp/build/
133+
topicHref: /cpp/build/building-c-cpp-isolated-applications-and-side-by-side-assemblies
134+
- name: Configure Visual C++ for 64-bit, x64 targets
135+
tocHref: /cpp/build/
136+
topicHref: /cpp/build/configuring-programs-for-64-bit-visual-cpp
137+
- name: Configure Visual C++ for ARM processors
138+
tocHref: /cpp/build/
139+
topicHref: /cpp/build/msbuild-visual-cpp
140+
- name: Configuring Programs for Windows XP
141+
tocHref: /cpp/build/
142+
topicHref: /cpp/build/configuring-programs-for-windows-xp
103143
- name: Build Reference
104144
tocHref: /cpp/build/reference/
105-
topicHref: /cpp/build/reference/c-cpp-building-reference
145+
topicHref: /cpp/build/reference/configuring-programs-for-arm-processors-visual-cpp
106146
items:
107147
- name: Compiler Errors
108148
tocHref: /cpp/error-messages/compiler-errors-1/

docs/build/building-on-the-command-line.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,6 @@ When you build on the command line, the F1 command is not available for instant
143143

144144
## In This Section
145145

146-
The articles in this section of the documentation show how to build apps on the command line, describe how to customize the command-line build environment to use 64-bit toolsets and target x86, x64, and ARM platforms, and demonstrate how to use the command-line build tools MSBuild and NMAKE.
147-
148146
[Walkthrough: Compiling a Native C++ Program on the Command Line](walkthrough-compiling-a-native-cpp-program-on-the-command-line.md)<br/>
149147
Gives an example that shows how to create and compile a simple C++ program on the command line.
150148

@@ -160,11 +158,21 @@ Describes how to create and compile a C++/CX program that uses the Windows Runti
160158
[Set the Path and Environment Variables for Command-Line Builds](setting-the-path-and-environment-variables-for-command-line-builds.md)<br/>
161159
Describes how to start a command prompt window that has the required environment variables set for command-line builds that target x86, x64, and ARM platforms by using a 32-bit or 64-bit toolset.
162160

163-
[NMAKE Reference](reference/nmake-reference.md)<br/>
164-
Provides links to articles that describe the Microsoft Program Maintenance Utility (NMAKE.EXE).
161+
[Compiler Command-Line Syntax](compiler-command-line-syntax.md)<br/>
162+
163+
[CL Filename Syntax](cl-filename-syntax.md)<br/>
164+
165+
[Order of CL Options](order-of-cl-options.md)<br/>
166+
167+
[Return Value of cl.exe](return-value-of-cl-exe.md)<br/>
168+
169+
[CL Environment Variables](cl-environment-variables.md)<br/>
170+
171+
[CL Command Files](cl-command-files.md)<br/>
172+
173+
[Fast Compilation](fast-compilation.md)<br/>
165174

166-
[MSBuild (Visual C++)](msbuild-visual-cpp.md)<br/>
167-
Provides links to articles that discuss how to use msbuild.exe from the command line.
175+
[CL Invokes the Linker](cl-invokes-the-linker.md)<br/>
168176

169177
## Related Sections
170178

docs/build/setting-the-path-and-environment-variables-for-command-line-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Set the Path and Environment Variables for Command-Line Builds"
2+
title: "Path and Environment Variables for C++ Command-Line Builds - Visual Studio"
33
ms.custom: "conceptual"
44
ms.date: "11/04/2016"
55
f1_keywords: ["include", "Lib", "Path"]

0 commit comments

Comments
 (0)