2003-04-29 18:59:35 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2004-02-13 20:42:16 +00:00
|
|
|
<?eclipse version="3.0"?>
|
2005-11-15 21:33:43 +00:00
|
|
|
<plugin>
|
2003-11-28 22:32:03 +00:00
|
|
|
|
2005-11-15 21:33:43 +00:00
|
|
|
|
2004-01-05 20:51:56 +00:00
|
|
|
<!-- Configure the help contribution for this plugin -->
|
|
|
|
<!-- This part should be in a documentation plugin -->
|
2003-11-28 22:32:03 +00:00
|
|
|
<!-- ============================================================================= -->
|
|
|
|
<!-- Define primary TOC -->
|
|
|
|
<!-- ============================================================================= -->
|
2004-01-05 20:51:56 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.help.toc">
|
|
|
|
<toc
|
|
|
|
file="toc.xml"
|
|
|
|
primary="true">
|
|
|
|
</toc>
|
2003-04-29 18:59:35 +00:00
|
|
|
</extension>
|
2003-11-28 22:32:03 +00:00
|
|
|
<!-- ============================================================================= -->
|
|
|
|
<!-- Define TOCs -->
|
|
|
|
<!-- ============================================================================= -->
|
2004-01-05 20:51:56 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.help.toc">
|
|
|
|
<toc
|
|
|
|
file="topics_Getting_Started.xml">
|
|
|
|
</toc>
|
|
|
|
<toc
|
|
|
|
file="topics_Concepts.xml">
|
|
|
|
</toc>
|
|
|
|
<toc
|
|
|
|
file="topics_Tasks.xml">
|
|
|
|
</toc>
|
|
|
|
<toc
|
|
|
|
file="topics_Reference.xml">
|
|
|
|
</toc>
|
2003-11-28 22:32:03 +00:00
|
|
|
</extension>
|
|
|
|
<!-- ============================================================================= -->
|
|
|
|
<!-- F1 context files -->
|
|
|
|
<!-- ============================================================================= -->
|
2004-01-05 20:51:56 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.help.contexts">
|
|
|
|
<contexts
|
|
|
|
file="contexts_CDT.xml"
|
|
|
|
plugin="org.eclipse.cdt.ui">
|
|
|
|
</contexts>
|
2003-04-29 18:59:35 +00:00
|
|
|
</extension>
|
2004-01-05 20:51:56 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.help.contexts">
|
|
|
|
<contexts
|
|
|
|
file="contexts_CDT_DEBUGGER.xml"
|
|
|
|
plugin="org.eclipse.cdt.debug.ui">
|
|
|
|
</contexts>
|
2003-04-29 18:59:35 +00:00
|
|
|
</extension>
|
2004-01-05 20:51:56 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.help.contexts">
|
|
|
|
<contexts
|
|
|
|
file="contexts_CDT_DEBUGGER_MI.xml"
|
|
|
|
plugin="org.eclipse.cdt.debug.mi.ui">
|
|
|
|
</contexts>
|
2003-09-26 22:02:32 +00:00
|
|
|
</extension>
|
2004-01-05 20:51:56 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.help.contexts">
|
|
|
|
<contexts
|
|
|
|
file="contexts_CDT_make.xml"
|
|
|
|
plugin="org.eclipse.cdt.make.ui">
|
|
|
|
</contexts>
|
2003-09-26 22:02:32 +00:00
|
|
|
</extension>
|
2004-01-05 20:51:56 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.help.contexts">
|
|
|
|
<contexts
|
|
|
|
file="contexts_CDT_LAUNCH.xml"
|
|
|
|
plugin="org.eclipse.cdt.launch">
|
|
|
|
</contexts>
|
2003-04-29 18:59:35 +00:00
|
|
|
</extension>
|
2007-04-29 19:14:36 +00:00
|
|
|
|
|
|
|
<!-- ============================================================================= -->
|
|
|
|
<!-- KEYWORD INDEX EXTENSION -->
|
|
|
|
<!-- ============================================================================= -->
|
|
|
|
<!--
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.help.index" >
|
|
|
|
<index file="index.xml" />
|
|
|
|
</extension>
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
|
|
!-- ============================================================================= -->
|
|
|
|
<!-- CHEATSHEET EXTENSION -->
|
|
|
|
<!-- ============================================================================= -->
|
|
|
|
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.cheatsheets.cheatSheetContent">
|
|
|
|
<category
|
|
|
|
id="org.eclipse.cdt-doc.category.tutorials"
|
|
|
|
name="C/C++ Development">
|
|
|
|
</category>
|
|
|
|
<cheatsheet
|
|
|
|
category="org.eclipse.cdt-doc.category.tutorials"
|
|
|
|
composite="false"
|
|
|
|
contentFile="$nl$/org.eclipse.cdt.doc.user/cheatsheets/cs_cdt_basic.xml"
|
|
|
|
id="org.eclipse.cdt-doc.cheatsheet.cdt_basic"
|
|
|
|
name="Creating a C/C++ Managed Make project">
|
|
|
|
<description>
|
|
|
|
Use this tutorial to learn how to create a simple C/C++ project that uses the Managed Make system.
|
|
|
|
</description>
|
|
|
|
</cheatsheet>
|
|
|
|
<cheatsheet
|
|
|
|
category="org.eclipse.cdt-doc.category.tutorials"
|
|
|
|
composite="false"
|
|
|
|
contentFile="$nl$/org.eclipse.cdt.doc.user/cheatsheets/cs_cdt_import_project.xml"
|
|
|
|
id="org.eclipse.cdt-doc.cheatsheet.cdt_basic"
|
|
|
|
name="Importing a C/C++ Managed Make Project">
|
|
|
|
<description>
|
|
|
|
Use this tutorial to learn how to successfully import a CDT project.
|
|
|
|
</description>
|
|
|
|
</cheatsheet>
|
|
|
|
</extension>
|
2003-10-01 20:23:21 +00:00
|
|
|
|
2003-04-29 18:59:35 +00:00
|
|
|
</plugin>
|