1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 09:35:23 +02:00
cdt/rse/examples/org.eclipse.rse.remotecdt/plugin.xml

33 lines
1.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
delegate="org.eclipse.rse.remotecdt.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
type="org.eclipse.rse.remotecdt.RemoteApplicationLaunch"
class="org.eclipse.rse.remotecdt.RemoteLaunchConfigurationTabGroup"
id="org.eclipse.rse.remotecdt.RemoteLaunchTabGroup">
</launchConfigurationTabGroup>
</extension>
</plugin>