1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00
cdt/launch/org.eclipse.cdt.launch/plugin.xml

121 lines
4.4 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
id="org.eclipse.cdt.launch"
2002-08-26 16:52:29 +00:00
name="%pluginName"
2004-07-15 15:54:47 +00:00
version="2.1.0"
2002-08-26 16:52:29 +00:00
provider-name="%providerName"
class="org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin">
<runtime>
2002-08-26 18:07:15 +00:00
<library name="cdtlaunch.jar">
<export name="*"/>
</library>
</runtime>
<requires>
<import plugin="org.eclipse.ui.ide"/>
<import plugin="org.eclipse.core.expressions"/>
<import plugin="org.eclipse.core.resources"/>
<import plugin="org.eclipse.debug.core"/>
<import plugin="org.eclipse.debug.ui"/>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.cdt.core"/>
<import plugin="org.eclipse.cdt.ui"/>
<import plugin="org.eclipse.cdt.debug.core"/>
<import plugin="org.eclipse.cdt.debug.ui"/>
2003-12-17 01:59:02 +00:00
<import plugin="org.eclipse.core.boot"/>
<import plugin="org.eclipse.core.runtime"/>
</requires>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
name="%LocalCDTLaunch.name"
delegate="org.eclipse.cdt.launch.internal.LocalCLaunchConfigurationDelegate"
modes="run,debug"
public="true"
id="org.eclipse.cdt.launch.localCLaunch">
</launchConfigurationType>
2002-09-23 17:16:19 +00:00
<launchConfigurationType
name="%CoreFileCDTLaunch.name"
delegate="org.eclipse.cdt.launch.internal.CoreFileLaunchDelegate"
modes="debug"
public="true"
id="org.eclipse.cdt.launch.coreFileCLaunch">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
2002-08-15 20:10:58 +00:00
icon="icons/c_app.gif"
configTypeID="org.eclipse.cdt.launch.localCLaunch"
id="org.eclipse.cdt.launch.localCLaunchImage">
</launchConfigurationTypeImage>
2002-09-23 17:16:19 +00:00
<launchConfigurationTypeImage
icon="icons/c_app.gif"
configTypeID="org.eclipse.cdt.launch.coreFileCLaunch"
id="org.eclipse.cdt.launch.coreFileCLaunchImage">
</launchConfigurationTypeImage>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
type="org.eclipse.cdt.launch.localCLaunch"
class="org.eclipse.cdt.launch.internal.ui.LocalCLaunchConfigurationTabGroup"
id="org.eclipse.cdt.launch.localClaunchConfigurationTabGroup">
</launchConfigurationTabGroup>
2002-09-23 17:16:19 +00:00
<launchConfigurationTabGroup
type="org.eclipse.cdt.launch.coreFileCLaunch"
class="org.eclipse.cdt.launch.internal.ui.CoreFileCLaunchConfigurationTabGroup"
id="org.eclipse.cdt.launch.voreFileCLaunchTabGroup">
</launchConfigurationTabGroup>
</extension>
2002-12-16 20:50:32 +00:00
<extension
point="org.eclipse.debug.ui.launchShortcuts">
2002-11-23 04:19:53 +00:00
<shortcut
2004-02-19 23:29:54 +00:00
label="%CApplicationShortcut.label"
2002-11-23 04:19:53 +00:00
icon="icons/c_app.gif"
2003-12-17 01:59:02 +00:00
modes="run, debug"
class="org.eclipse.cdt.launch.internal.CApplicationLaunchShortcut"
2002-12-16 20:50:32 +00:00
id="org.eclipse.cdt.debug.ui.localCShortcut">
<contextualLaunch>
<enablement>
<with variable="selection">
<count value="1"/>
<iterate>
<test property="org.eclipse.cdt.launch.isExecutable"/>
</iterate>
</with>
</enablement>
<contextLabel
mode="run"
label="%ContextualRunJavaApplication.label"/>
<contextLabel
mode="debug"
label="%ContextualDebugJavaApplication.label"/>
</contextualLaunch>
2004-02-19 23:29:54 +00:00
<filter
name="ContextualLaunchActionFilter"
value="supportsContextualLaunch"/>
2002-12-16 20:50:32 +00:00
<perspective
id="org.eclipse.cdt.ui.CPerspective">
</perspective>
<perspective
id="org.eclipse.debug.ui.DebugPerspective">
</perspective>
2002-11-23 04:19:53 +00:00
</shortcut>
</extension>
<!-- Property testers -->
<extension point="org.eclipse.core.expressions.propertyTesters">
<propertyTester
namespace="org.eclipse.cdt.launch"
properties="isExecutable"
type="org.eclipse.core.resources.IResource"
class="org.eclipse.cdt.launch.internal.CPropertyTester"
id="org.eclipse.cdt.launch.CPropertyTester">
</propertyTester>
</extension>
2002-11-23 04:19:53 +00:00
</plugin>