Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Ryall2007-05-31 19:24:25 +0000
committerKen Ryall2007-05-31 19:24:25 +0000
commit5a62498557a6dd30ed814b920e32a5181f070457 (patch)
tree3776957c2bddf835dbcc360bc0ce8717176e9fe7 /doc/org.eclipse.cdt.doc.user/cheatsheets/cs_cdt_basic.xml
parenteceddd3daef19b5fb161768324aa8e785c9c8768 (diff)
downloadorg.eclipse.cdt-5a62498557a6dd30ed814b920e32a5181f070457.tar.gz
org.eclipse.cdt-5a62498557a6dd30ed814b920e32a5181f070457.tar.xz
org.eclipse.cdt-5a62498557a6dd30ed814b920e32a5181f070457.zip
Bug 185657.
Diffstat (limited to 'doc/org.eclipse.cdt.doc.user/cheatsheets/cs_cdt_basic.xml')
-rw-r--r--doc/org.eclipse.cdt.doc.user/cheatsheets/cs_cdt_basic.xml15
1 files changed, 12 insertions, 3 deletions
diff --git a/doc/org.eclipse.cdt.doc.user/cheatsheets/cs_cdt_basic.xml b/doc/org.eclipse.cdt.doc.user/cheatsheets/cs_cdt_basic.xml
index 5e5ded806f2..45058b4a255 100644
--- a/doc/org.eclipse.cdt.doc.user/cheatsheets/cs_cdt_basic.xml
+++ b/doc/org.eclipse.cdt.doc.user/cheatsheets/cs_cdt_basic.xml
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
+
<cheatsheet title="Creating C/C++ projects">
<intro href="/org.eclipse.cdt.doc.user/concepts/cdt_c_projects.htm">
<description>
@@ -37,26 +38,34 @@
</item>
<item title="Building projects and inspecting files" dialog="true" skip="false" href="/org.eclipse.cdt.doc.user/tasks/cdt_o_build_task.htm">
<description>
- Build the program to create a binary and examine it in Outline and C/C++ Project views.
+ Build the program to create a binary and examine it in Project Explorer and Outline views.
</description>
<subitem label="Click Project &gt; Build All to create a binary of your source file." skip="true">
+ <!--
<command serialization="org.eclipse.ui.project.buildAll" confirm="false">
</command>
+ -->
</subitem>
<subitem label="In the Project Explorer view, open the Binaries element and examine the program&apos;s binary." skip="true">
</subitem>
<subitem label="Open the .cpp file in the project and examine the Outline view." skip="true">
- <command serialization="org.eclipse.cdt.ui.edit.open.outline" confirm="false">
+ <command serialization="org.eclipse.ui.views.showView(org.eclipse.ui.views.showView.viewId=org.eclipse.cdt.ui.edit.open.outline)" confirm="false">
</command>
+ <!--
+ <command serialization="org.eclipse.cdt.ui.edit.open.outline" confirm="false">
+ </command>
+ -->
</subitem>
</item>
<item title="Running the program" dialog="true" skip="false" href="/org.eclipse.cdt.doc.user/reference/cdt_u_run_dbg_main.htm">
<description>
The final step is to create a run configuration that defines how the program is launched. Note you can define multiple run configurations if desired, each with its own settings.
</description>
- <subitem label="Select the project and click Run &gt; Run.. to launch the program." skip="false">
+ <subitem label="Select the project and click Run As &gt; Open Run Dialog... to launch the program." skip="false">
+ <!--
<command serialization="org.eclipse.debug.ui.commands.OpenRunConfigurations" confirm="false">
</command>
+ -->
</subitem>
<subitem label="Create a run configuration by double-clicking the C/C++ Local Application item." skip="false">
</subitem>

Back to the top