1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00
cdt/plugins/org.eclipse.dd.gdb.launch/plugin.xml
Marc Khouzam 02a8fc8a6a Bug 231129
Enhances the launch code to allow for a RemoteAttach as part of the
current Attach launch configuration type.
2008-05-15 19:44:14 +00:00

69 lines
3.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
delegate="org.eclipse.dd.gdb.internal.provisional.launching.GdbLaunchDelegate"
public="true"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer"
name="C/C++ Local Application (Experimental - DSF)"
id="org.eclipse.dd.gdb.launch.localCLaunch"
modes="debug">
</launchConfigurationType>
<launchConfigurationType
delegate="org.eclipse.dd.gdb.internal.provisional.launching.GdbLaunchDelegate"
id="org.eclipse.dd.gdb.launch.remoteCLaunch"
modes="debug"
name="C/C++ Remote Application (Experimental - DSF)"
public="true"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchConfigurationType>
<launchConfigurationType
delegate="org.eclipse.dd.gdb.internal.provisional.launching.GdbLaunchDelegate"
id="org.eclipse.dd.gdb.launch.attachCLaunch"
modes="debug"
name="C/C++ Attach to Running Application (Experimental - DSF)"
public="true"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="org.eclipse.dd.gdb.internal.ui.launching.GdbLocalRunLaunchConfigurationTabGroup"
id="org.eclipse.dd.gdb.launch.localRunLaunchTabGroup"
type="org.eclipse.dd.gdb.launch.localCLaunch">
</launchConfigurationTabGroup>
<launchConfigurationTabGroup
class="org.eclipse.dd.gdb.internal.ui.launching.GdbRemoteRunLaunchConfigurationTabGroup"
id="org.eclipse.dd.gdb.launch.remoteRunLaunchTabGroup"
type="org.eclipse.dd.gdb.launch.remoteCLaunch">
</launchConfigurationTabGroup>
<launchConfigurationTabGroup
class="org.eclipse.dd.gdb.internal.ui.launching.GdbAttachLaunchConfigurationTabGroup"
id="org.eclipse.dd.gdb.launch.localAttachLaunchTabGroup"
type="org.eclipse.dd.gdb.launch.attachCLaunch">
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
configTypeID="org.eclipse.dd.gdb.launch.localCLaunch"
icon="icons/full/obj16/c_app.gif"
id="org.eclipse.dd.gdb.launch.localRunLaunchImage">
</launchConfigurationTypeImage>
<launchConfigurationTypeImage
configTypeID="org.eclipse.dd.gdb.launch.remoteCLaunch"
icon="icons/full/obj16/c_app.gif"
id="org.eclipse.dd.gdb.launch.remoteRunLaunchImage">
</launchConfigurationTypeImage>
<launchConfigurationTypeImage
configTypeID="org.eclipse.dd.gdb.launch.attachCLaunch"
icon="icons/full/obj16/c_app.gif"
id="org.eclipse.dd.gdb.launch.attachRunLaunchImage">
</launchConfigurationTypeImage>
</extension>
</plugin>