Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fa6d0b2e6c74723dfef16eeeee7f7cb0ec92cbf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2006 PalmSource, Inc. and others
All rights reserved. This program and the accompanying materials 
are made available under the terms of the Eclipse Public License v1.0 
which accompanies this distribution, and is available at 
http://www.eclipse.org/legal/epl-v10.html 

Contributors: 
Ewa Matejska (PalmSource) - initial API and implementation 
Martin Oberhuber (Wind River) - fix 158529: Migrate docs to HTML / TOC format 
-->
<?eclipse version="3.0"?>
<plugin>
   <extension
         point="org.eclipse.debug.core.launchConfigurationTypes">
      <launchConfigurationType
            sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
            delegate="org.eclipse.cdt.launch.remote.RemoteRunLaunchDelegate"
            public="true"
            sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer"
            name="C/C++ Remote Application"
            id="org.eclipse.rse.remotecdt.RemoteApplicationLaunch"
            modes="debug,run">
      </launchConfigurationType>
   </extension>
   <extension
         point="org.eclipse.debug.ui.launchConfigurationTypeImages">
      <launchConfigurationTypeImage
            icon="icons/full/obj16/c_app.gif"
            configTypeID="org.eclipse.rse.remotecdt.RemoteApplicationLaunch"
            id="org.eclipse.cdt.launch.localRunLaunchImagefff">
      </launchConfigurationTypeImage>
   </extension>    
   <extension
         point="org.eclipse.debug.ui.launchConfigurationTabGroups">
      <launchConfigurationTabGroup
            class="org.eclipse.cdt.launch.remote.RemoteLaunchConfigurationTabGroup"
            helpContextId="org.eclipse.rse.remotecdt.launchgroup"
            id="org.eclipse.rse.remotecdt.RemoteLaunchTabGroup"
            type="org.eclipse.rse.remotecdt.RemoteApplicationLaunch">
      </launchConfigurationTabGroup>
   </extension>
   <extension
         point="org.eclipse.cdt.debug.core.CDebugger">
      <debugger
            class="org.eclipse.cdt.debug.mi.core.GDBServerCDIDebugger2"
            cpu="*"
            id="org.eclipse.rse.remotecdt.RemoteGDBDebugger"
            modes="run"
            name="remote gdb/mi"
            platform="*">
      </debugger>
   </extension>
   <extension
         point="org.eclipse.cdt.debug.ui.CDebuggerPage">
      <debuggerPage
            class="org.eclipse.cdt.launch.remote.RemoteGDBDebuggerPage"
            debuggerID="org.eclipse.rse.remotecdt.RemoteGDBDebugger"
            id="org.eclipse.rse.remotecdt.RemoteGDBDebuggerPage">
      </debuggerPage>
   </extension>

	<!-- ============================================ -->
	<!-- Define Help Context                          -->
	<!-- ============================================ -->
	<extension point="org.eclipse.help.contexts">
  		<contexts file="HelpContexts.xml"/>
	</extension>
	<extension point="org.eclipse.help.toc">
		<toc file="toc.xml"/>
	</extension>

</plugin>

Back to the top