Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Getting Started documentation update.
Browse files Browse the repository at this point in the history
* Put Core Build and Managed Build items in separate topics.
* Added two images to Creating a CMake project.
* Added new pages about creating a CBS Makefile project, using
  existing code, launch bar, building, running, and debbuggin
  a project.
* Renamed "Creating a simple application" to "Creating a Managed Build
  System Makefile project" and replaced two images.
* Removed "Creating a Makefile project", because it was duplicate
  information.

Fixes #992
ewaterlander committed Jan 24, 2025
1 parent 9e04dc5 commit 9526216
Showing 33 changed files with 562 additions and 194 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/org.eclipse.cdt.doc.user/images/cdt_w_basic03a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/org.eclipse.cdt.doc.user/images/launchbar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
////
Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/

SPDX-License-Identifier: EPL-2.0
////

// pull in shared headers, footers, etc
:docinfo: shared

// support image rendering and table of contents within GitHub
ifdef::env-github[]
:imagesdir: ../../images
:toc:
:toc-placement!:
endif::[]

// enable support for button, menu and keyboard macros
:experimental:

// Until ENDOFHEADER the content must match adoc-headers.txt for consistency,
// this is checked by the build in do_generate_asciidoc.sh, which also ensures
// that the checked in html is up to date.
// do_generate_asciidoc.sh can also be used to apply this header to all the
// adoc files.
// ENDOFHEADER

== Building a project

During CBS project creation a launch configuration with the same name
is created along with it. The Build settings are managed in the *Build
Settings* tab of the launch configuration.

CBS projects rely on the xref:cbs_launchbar.adoc[Launch Bar]. Make
sure the launch bar is installed and enabled.

=== Building for Run

. Select the launch configurion of the project you want to build.
. Select launch mode *Run*.
. Press the *Build* button in the launch bar.
. Inspect the build output in the Console window.
. Find the build results in the Project Explorer.

image:cbs_build.png[Build a project for Run]

=== Building for Debug

To build for Debug:

. Select the launch configurion of the project you want to build.
. Select launch mode *Debug*.
. Press the *Build* button.
. Inspect the build output in the Console window.
. Find the build results in the Project Explorer.

image:cbs_build_debug.png[Build a project for Debug]

=== Changing build settings

The launch configuration presents separate build settings for launch mode
Run and Debug. You will see the build settings depending on the selected
launch mode.

To change Run build settings:

. Set the launch mode to *Run*
. Edit the project's launch configuration. Click on the gear icon.

image:cbs_edit_launch_config_run.png[Edit launch configuration]

The edit launch configuration wizard will open. Select the *Build
Settings* tab.

The only settings that can be changed are the build chain, and how
CMake or Make is called. There are no options to set pre-processor
symbols or include paths. This makes that the project can easily be
shared with other IDEs, command line, or continuous integration flows.

The following picture shows the build settings of a CMake project.

image:cbs_build_settings_tab_cmake.png[CMake build settings tab]

icon:arrow-circle-right[] xref:cbs_run_project.adoc[Next: Running a project]
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
////
Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/

SPDX-License-Identifier: EPL-2.0
////

// pull in shared headers, footers, etc
:docinfo: shared

// support image rendering and table of contents within GitHub
ifdef::env-github[]
:imagesdir: ../../images
:toc:
:toc-placement!:
endif::[]

// enable support for button, menu and keyboard macros
:experimental:

// Until ENDOFHEADER the content must match adoc-headers.txt for consistency,
// this is checked by the build in do_generate_asciidoc.sh, which also ensures
// that the checked in html is up to date.
// do_generate_asciidoc.sh can also be used to apply this header to all the
// adoc files.
// ENDOFHEADER

== Debugging a project

Debugging a CBS project is done via the xref:cbs_launchbar.adoc[Launch Bar]. Make
sure the launch bar is installed and enabled.

First build the project for Debug.
See xref:cbs_build_project.adoc[Building a project].

. Select the launch configuration of the project you want to run.
. Select launch mode *Debug*.
. Press the *Debug* button in the launch bar.
. Confirm the switch to the Debug Perspective.

image:cbs_debug_cmake.png[Launch a CMake project for Debug]

The Perspective will change to *Debug*, and you can start debugging.

image:cbs_debugging.png[Debugging a CMake project]


=== Changing debug settings

To change run settings edit the project's launch configuration.
Click on the gear icon.

To change debug settings:

. Set the launch mode to *Debug*
. Edit the project's launch configuration. Click on the gear icon.

image:cbs_edit_launch_config_debug.png[Edit launch configuration]

The edit launch configuration wizard will open. Notice that there are
now two extra tabs *Debugger* and *Source*, because the launch mode is
*Debug*. These are not present in launch mode *Run*.

On the *Main* tab you can set an alternative C/C++ application, and
you can enable or disable build before launch.

On the *Arguments* tab you specify optional arguments, and you can
change the working directory.

On the *Environment* tab you define optional environment variables.

On the *Debugger* tab you can set an alternative debugger. If the
debugger name is not an absolute path, CDT will look first for the
debugger in the selected toolchain in the *Build Settings* tab. When
it is not found in the toolchain the debugger is searched in the
*PATH* environment variable defined locations.

On the *Source* tab extra paths outside the project folder can be
defined to look for source code.

image:cbs_launch_config_tab_debug.png[Launch configuration debug tab]
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
////
Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/

SPDX-License-Identifier: EPL-2.0
////

// pull in shared headers, footers, etc
:docinfo: shared

// support image rendering and table of contents within GitHub
ifdef::env-github[]
:imagesdir: ../../images
:toc:
:toc-placement!:
endif::[]

// enable support for button, menu and keyboard macros
:experimental:

// Until ENDOFHEADER the content must match adoc-headers.txt for consistency,
// this is checked by the build in do_generate_asciidoc.sh, which also ensures
// that the checked in html is up to date.
// do_generate_asciidoc.sh can also be used to apply this header to all the
// adoc files.
// ENDOFHEADER

== Launch Bar

CBS projects rely on the *LaunchBar*. Make sure the launch bar plugin
is installed and enabled. In the global preferences the launch bar can
be enabled or disabled.

image:launchbar_preferences.png[Launch Bar preferences]

The launch bar exists out of several components:

image:launchbar.png[Launch Bar]

. Build button, to launch a build.
. Run button, to launch a run. This button will change to a Debug
button in Debug mode.
. Stop button, to stop a Run or Debug session.
. Launch mode selector. To change between Run and Debug mode.
. Launch configuration selector.
. Edit launch configuration. To change the launch configuration
properties.
. Target selector. Not always visible.
. Edit target.

icon:arrow-circle-right[] xref:cbs_build_project.adoc[Next: Building a
project]
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
////
Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/

SPDX-License-Identifier: EPL-2.0
////

// pull in shared headers, footers, etc
:docinfo: shared

// support image rendering and table of contents within GitHub
ifdef::env-github[]
:imagesdir: ../../images
:toc:
:toc-placement!:
endif::[]

// enable support for button, menu and keyboard macros
:experimental:

// Until ENDOFHEADER the content must match adoc-headers.txt for consistency,
// this is checked by the build in do_generate_asciidoc.sh, which also ensures
// that the checked in html is up to date.
// do_generate_asciidoc.sh can also be used to apply this header to all the
// adoc files.
// ENDOFHEADER

== Running a project

Running a CBS project is done via the xref:cbs_launchbar.adoc[Launch Bar]. Make
sure the launch bar is installed and enabled.

First build the project for Run.
See xref:cbs_build_project.adoc[Building a project].

. Select the launch configuration of the project you want to run.
. Select launch mode *Run*.
. Press the *Run* button in the launch bar.
. Inspect the program output in the Console window.

image:cbs_run_cmake.png[Launch a CMake project for Run]

=== Changing run settings

To change run settings:

. Set the launch mode to *Run*
. Edit the project's launch configuration. Click on the gear icon.

image:cbs_edit_launch_config_run.png[Edit launch configuration]

The edit launch configuration wizard will open.

On the *Main* tab you can set an alternative C/C++ application, and
you can enable or disable build before launch.

On the *Arguments* tab you specify optional arguments, and you can
change the working directory.

On the *Environment* tab you define optional environment variables.

image:cbs_launch_config_tab_main.png[Launch configuration main tab]

icon:arrow-circle-right[] xref:cbs_debug_project.adoc[Next: Debugging a project]
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
////
Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/

SPDX-License-Identifier: EPL-2.0
////

// pull in shared headers, footers, etc
:docinfo: shared

// support image rendering and table of contents within GitHub
ifdef::env-github[]
:imagesdir: ../../images
:toc:
:toc-placement!:
endif::[]

// enable support for button, menu and keyboard macros
:experimental:

// Until ENDOFHEADER the content must match adoc-headers.txt for consistency,
// this is checked by the build in do_generate_asciidoc.sh, which also ensures
// that the checked in html is up to date.
// do_generate_asciidoc.sh can also be used to apply this header to all the
// adoc files.
// ENDOFHEADER

== Using existing code

This tutorial describes how to use existing code for Core Build System
projects.

Using existing code is done by creating a new **empty** project on top of the
existing code.

=== Using an existing CMake project

To create an empty CMake project select the template *Empty or Existing CMake
Project* in the *New C/{cpp} Project* wizard.

image:cbs_empty_cmake_project.png[Empty or Existing CMake Project]

Then in the *New CMake Project* wizard deselect *Use default location*
and set the location of the existing code.

image:cbs_existing_code_cmake.png[Existing code CMake]

More information about creating a CMake project is described in
xref:new_cmake_proj.adoc[Creating a CMake project]

=== Using an existing Makefile project

Create a Makefile project as described in
xref:new_cbs_makefile_proj.adoc[Creating a Core Build System Makefile project]
with the following changes:

In the *New Makefile Project* wizard deselect *Use default location*
and set the location of the existing code, and deselect *Create Hello
World Source and Makefile example*.

image:cbs_existing_code_makefile.png[Existing code Makefile]

icon:arrow-circle-right[] xref:cbs_launchbar.adoc[Next: Launch Bar]
22 changes: 7 additions & 15 deletions doc/org.eclipse.cdt.doc.user/src/getting_started/cdt_w_basic.adoc
Original file line number Diff line number Diff line change
@@ -28,18 +28,13 @@ endif::[]
// adoc files.
// ENDOFHEADER

== Tutorial: Creating a simple application
== Tutorial: Creating a Managed Build System Makefile project

In this tutorial, you will use the CDT to create a simple 'Hello World'
application. This tutorial describes the process of creating a new {cpp}
project where the build is automatically managed by the CDT, and running
the program.

*NOTE*: In earlier versions of the CDT, there were two separate project
types: Managed make (automatically generated a makefile) and Standard
make (required the user's makefile to build). Now with CDT, you just
select a project type, and that determines what build system to use.

To create a simple "Hello World" application using CDT, perform the
following general steps:

@@ -57,10 +52,13 @@ image:cdt_w_basic02.png[Select File > New > Project menu
option,width=591,height=183]
+
. Select the type of project to create. For this tutorial, expand the
*{cpp}* folder and select *{cpp} Project* and click *Next*.
*C/{cpp}* folder and select *C/{cpp} Project* and click *Next*.
+
image:cdt_w_basic03a.png[Select project type]
+
. Select *{cpp} Managed Build* and click *Next*.
+
image:cdt_w_basic03a.png[Select project
type,width=525,height=500]
image:cdt_w_basic03b.png[Select {cpp} Managed Build]
+
. The *{cpp} Project* wizard opens.
+
@@ -139,12 +137,6 @@ populated with objects created from your code.
image:cdt_w_basic13.png[C Editor with Outline
view,width=731,height=333]
+
*NOTE:* You can specify a different editor, and add or modify existing
code templates in *Window > Preferences*.
+
*OPTIONAL*: You can type additional code in this file, and then save the
changes by clicking File > Save, or pressing *CTRL+S*.
+
Next, you will need to build your project before you can run it.
+
. Build your project by pressing *CTRL+B*, or select the project in the
Original file line number Diff line number Diff line change
@@ -88,9 +88,9 @@ xref:cdt_w_newmake.adoc[image:ngnext.gif[Next
icon,width=16,height=16]] *xref:cdt_w_newmake.adoc[Next: Creating your
makefile]*

xref:cdt_w_newproj.adoc[image:ngback.gif[Back
icon,width=16,height=16]] *xref:cdt_w_newproj.adoc[Back: Creating your
project]*
xref:cdt_w_import.adoc[image:ngback.gif[Back
icon,width=16,height=16]] *xref:cdt_w_import.adoc[Back: Importing an
existing project]*

image:ngconcepts.gif[Related concepts,width=143,height=21]

165 changes: 0 additions & 165 deletions doc/org.eclipse.cdt.doc.user/src/getting_started/cdt_w_newproj.adoc

This file was deleted.

47 changes: 47 additions & 0 deletions doc/org.eclipse.cdt.doc.user/src/getting_started/index_cbs.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
////
Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/

SPDX-License-Identifier: EPL-2.0
////

// pull in shared headers, footers, etc
:docinfo: shared

// support image rendering and table of contents within GitHub
ifdef::env-github[]
:imagesdir: ../../images
:toc:
:toc-placement!:
endif::[]

// enable support for button, menu and keyboard macros
:experimental:

// Until ENDOFHEADER the content must match adoc-headers.txt for consistency,
// this is checked by the build in do_generate_asciidoc.sh, which also ensures
// that the checked in html is up to date.
// do_generate_asciidoc.sh can also be used to apply this header to all the
// adoc files.
// ENDOFHEADER

= Core Build System contents

xref:core_build_system.adoc[Core Build System]

xref:new_cmake_proj.adoc[Creating a CMake project]

xref:new_cbs_makefile_proj.adoc[Creating a Core Build System Makefile project]

xref:cbs_using_existing_code.adoc[Using existing code]

xref:cbs_launchbar.adoc[Launch Bar]

xref:cbs_build_project.adoc[Building a project]

xref:cbs_run_project.adoc[Running a project]

xref:cbs_debug_project.adoc[Debugging a project]
45 changes: 45 additions & 0 deletions doc/org.eclipse.cdt.doc.user/src/getting_started/index_mbs.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
////
Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/

SPDX-License-Identifier: EPL-2.0
////

// pull in shared headers, footers, etc
:docinfo: shared

// support image rendering and table of contents within GitHub
ifdef::env-github[]
:imagesdir: ../../images
:toc:
:toc-placement!:
endif::[]

// enable support for button, menu and keyboard macros
:experimental:

// Until ENDOFHEADER the content must match adoc-headers.txt for consistency,
// this is checked by the build in do_generate_asciidoc.sh, which also ensures
// that the checked in html is up to date.
// do_generate_asciidoc.sh can also be used to apply this header to all the
// adoc files.
// ENDOFHEADER

= Legacy Managed Build System contents

xref:cdt_w_basic.adoc[Tutorial: Creating a Managed Build System Makefile project]

xref:cdt_w_import.adoc[Tutorial: Importing an existing project]

xref:cdt_w_newcpp.adoc[Creating your {cpp} file]

xref:cdt_w_newmake.adoc[Creating a makefile]

xref:cdt_w_build.adoc[Building a project]

xref:cdt_w_debug.adoc[Debugging a project]

xref:cdt_w_existing_code.adoc[Importing your C/{cpp} source files into Eclipse]
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
////
Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/

SPDX-License-Identifier: EPL-2.0
////

// pull in shared headers, footers, etc
:docinfo: shared

// support image rendering and table of contents within GitHub
ifdef::env-github[]
:imagesdir: ../../images
:toc:
:toc-placement!:
endif::[]

// enable support for button, menu and keyboard macros
:experimental:

// Until ENDOFHEADER the content must match adoc-headers.txt for consistency,
// this is checked by the build in do_generate_asciidoc.sh, which also ensures
// that the checked in html is up to date.
// do_generate_asciidoc.sh can also be used to apply this header to all the
// adoc files.
// ENDOFHEADER

== Creating a Core Build System Makefile project

This tutorial describes the process of creating a new C/{cpp} project that includes a Makefile file.

You need to create a project to contain your source code and related files.
A project has an associated builder that can incrementally compile source files as they are changed.

To create a project:

. Select menu:File[New > Project].


When you create a new project, you are required to specify the project type.
This project type will determine the toolchain, data, and tabs that the CDT uses/displays.

. Select the type of project to create. For this tutorial, expand the *C/{cpp}* folder and select *C/{cpp} Project*.
. Click btn:[Next].

image:cdt_w_basic03a.png[Select project type]

The *C/{cpp} Project* wizard opens:


image:c_cpp_project_wizard.png[width=515]


By default, the CDT presents all *C/{cpp} Project* templates.

. Select the *Make* template filter and choose from the *Makefile project* project template.


image:c_cpp_project_wizard_makefile.png[]

. Click btn:[Next].
. In the *Project name* field, provide a name for the new project.
. Leave the *Use Default Location* option selected.
. Select *Create Hello World Source and Makefile example* to
get a Hello World example application.
. Click btn:[Finish].
. If a message box prompts you to change perspectives, click btn:[Yes].

image:c_cpp_project_wizard_makefile_properties.png[]

Your new project displays in the Project Explorer view.
Your project may be empty if you did not select the Hello World example creation.
You can now start writing the code for your application or importing code from elsewhere.

icon:arrow-circle-right[] xref:cbs_using_existing_code.adoc[Next: Using existing code]
Original file line number Diff line number Diff line change
@@ -46,6 +46,7 @@ This project type will determine the toolchain, data, and tabs that the CDT uses
. Select the type of project to create. For this tutorial, expand the *C/{cpp}* folder and select *C/{cpp} Project*.
. Click btn:[Next].

image:cdt_w_basic03a.png[Select project type]

The *C/{cpp} Project* wizard opens:

@@ -67,8 +68,10 @@ By default, the CDT presents all *C/{cpp} Project* templates.
. Click btn:[Finish].
. If a message box prompts you to change perspectives, click btn:[Yes].

image:c_cpp_project_wizard_cmake_properties.png[]

Your new project displays in the Project Explorer view.
Your project may be empty because you have not yet created files for your project.
You can now start writing the code for your application or importing code from elsewhere.

icon:arrow-circle-right[] xref:cdt_w_newcpp.adoc[Next: Creating your {cpp} file]
icon:arrow-circle-right[] xref:new_cbs_makefile_proj.adoc[Next: Creating a Makefile project]
29 changes: 19 additions & 10 deletions doc/org.eclipse.cdt.doc.user/topics_Getting_Started.xml
Original file line number Diff line number Diff line change
@@ -2,15 +2,24 @@
<?NLS TYPE="org.eclipse.help.toc"?>
<toc label="Getting Started">
<topic label="Preparing the Workbench" href="getting_started/cdt_w_prepare_workbench.htm"/>
<topic label="Creating a simple application" href="getting_started/cdt_w_basic.htm"/>
<topic label="Creating a Makefile project" href="getting_started/cdt_w_newproj.htm"/>
<topic label="Core Build System" href="getting_started/core_build_system.htm"/>
<topic label="Creating a CMake project" href="getting_started/new_cmake_proj.htm"/>
<topic label="Importing an existing project" href="getting_started/cdt_w_import.htm"/>
<topic href="getting_started/cdt_w_newcpp.htm" label="Creating a C++ file"/>
<topic href="getting_started/cdt_w_newmake.htm" label="Creating a makefile"/>
<topic label="Building a project" href="getting_started/cdt_w_build.htm"/>
<topic label="Debugging projects" href="getting_started/cdt_w_debug.htm"/>
<topic label="Importing C/C++ source files into Eclipse" href="getting_started/cdt_w_existing_code.htm"/>
<topic label="Core Build System" href="getting_started/index_cbs.htm">
<topic label="Core Build System" href="getting_started/core_build_system.htm"/>
<topic label="Creating a CMake project" href="getting_started/new_cmake_proj.htm"/>
<topic label="Creating a Core Build System Makefile project" href="getting_started/new_cbs_makefile_proj.htm"/>
<topic label="Using existing code" href="getting_started/cbs_using_existing_code.htm"/>
<topic label="Launch Bar" href="getting_started/cbs_launchbar.htm"/>
<topic label="Building a project" href="getting_started/cbs_build_project.htm"/>
<topic label="Running a project" href="getting_started/cbs_run_project.htm"/>
<topic label="Debugging a project" href="getting_started/cbs_debug_project.htm"/>
</topic>
<topic label="Legacy Managed Build System" href="getting_started/index_mbs.htm">
<topic label="Creating a Managed Build System Makefile project" href="getting_started/cdt_w_basic.htm"/>
<topic label="Importing an existing project" href="getting_started/cdt_w_import.htm"/>
<topic href="getting_started/cdt_w_newcpp.htm" label="Creating a C++ file"/>
<topic href="getting_started/cdt_w_newmake.htm" label="Creating a makefile"/>
<topic label="Building a project" href="getting_started/cdt_w_build.htm"/>
<topic label="Debugging projects" href="getting_started/cdt_w_debug.htm"/>
<topic label="Importing C/C++ source files into Eclipse" href="getting_started/cdt_w_existing_code.htm"/>
</topic>
<!--topic label="Updating the CDT" href="getting_started/cdt_w_install_cdt.htm"/-->
</toc>

0 comments on commit 9526216

Please sign in to comment.