Initial commit
30
TBE/Eclipse/plugins/org.eclipse.cdt.launch_2.1.0/about.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>About</title>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
|
||||
</head>
|
||||
<body lang="EN-US">
|
||||
<h2>About This Content</h2>
|
||||
|
||||
<p>20th August, 2002</p>
|
||||
<h3>License</h3>
|
||||
<p>Eclipse.org makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the
|
||||
Common Public License Version 1.0 ("CPL"). A copy of the CPL is available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>.
|
||||
For purposes of the CPL, "Program" will mean the Content.</p>
|
||||
|
||||
<h3>Contributions</h3>
|
||||
|
||||
<p>If this Content is licensed to you under the terms and conditions of the CPL, any Contributions, as defined in the CPL, uploaded, submitted, or otherwise
|
||||
made available to Eclipse.org, members of Eclipse.org and/or the host of Eclipse.org web site, by you that relate to such
|
||||
Content are provided under the terms and conditions of the CPL and can be made available to others under the terms of the CPL.</p>
|
||||
|
||||
<p>If this Content is licensed to you under license terms and conditions other than the CPL ("Other License"), any modifications, enhancements and/or
|
||||
other code and/or documentation ("Modifications") uploaded, submitted, or otherwise made available to Eclipse.org, members of Eclipse.org and/or the
|
||||
host of Eclipse.org, by you that relate to such Content are provided under terms and conditions of the Other License and can be made available
|
||||
to others under the terms of the Other License. In addition, with regard to Modifications for which you are the copyright holder, you are also
|
||||
providing the Modifications under the terms and conditions of the CPL and such Modifications can be made available to others under the terms of
|
||||
the CPL.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
BIN
TBE/Eclipse/plugins/org.eclipse.cdt.launch_2.1.0/cdtlaunch.jar
Normal file
BIN
TBE/Eclipse/plugins/org.eclipse.cdt.launch_2.1.0/icons/c_app.gif
Normal file
|
After Width: | Height: | Size: 862 B |
|
After Width: | Height: | Size: 125 B |
|
After Width: | Height: | Size: 108 B |
|
After Width: | Height: | Size: 166 B |
|
After Width: | Height: | Size: 198 B |
|
After Width: | Height: | Size: 152 B |
|
After Width: | Height: | Size: 157 B |
@@ -0,0 +1,21 @@
|
||||
######################################################################
|
||||
# Copyright (c) 2002 - 2004 QNX Software Systems Ltd. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Common Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/cpl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# QNX Software Systems Ltd. - Initial implementation
|
||||
######################################################################
|
||||
pluginName=C/C++ Development Tools Launching Support
|
||||
providerName=Eclipse.org
|
||||
|
||||
LocalCDTLaunch.name=C/C++ Local Application
|
||||
LocalAttachCDTLaunch.name=C/C++ Attach to Local Application
|
||||
CoreFileCDTLaunch.name=C/C++ Postmortem debugger
|
||||
|
||||
CApplicationShortcut.label=Local C/C++ Application
|
||||
ContextualRunCApplication.label=Run Local C/C++ Application
|
||||
ContextualDebugCApplication.label=Debug Local C/C++ Application
|
||||
|
||||
164
TBE/Eclipse/plugins/org.eclipse.cdt.launch_2.1.0/plugin.xml
Normal file
@@ -0,0 +1,164 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
<plugin
|
||||
id="org.eclipse.cdt.launch"
|
||||
name="%pluginName"
|
||||
version="2.1.0"
|
||||
provider-name="%providerName"
|
||||
class="org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin">
|
||||
|
||||
<runtime>
|
||||
<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"/>
|
||||
<import plugin="org.eclipse.core.boot"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
<import plugin="org.eclipse.core.variables"/>
|
||||
</requires>
|
||||
|
||||
|
||||
<extension
|
||||
point="org.eclipse.debug.core.launchConfigurationTypes">
|
||||
<launchConfigurationType
|
||||
name="%LocalCDTLaunch.name"
|
||||
delegate="org.eclipse.cdt.launch.internal.LocalRunLaunchDelegate"
|
||||
modes="run,debug"
|
||||
public="true"
|
||||
id="org.eclipse.cdt.launch.localCLaunch">
|
||||
</launchConfigurationType>
|
||||
<launchConfigurationType
|
||||
name="%LocalAttachCDTLaunch.name"
|
||||
delegate="org.eclipse.cdt.launch.internal.LocalAttachLaunchDelegate"
|
||||
modes="debug"
|
||||
public="true"
|
||||
id="org.eclipse.cdt.launch.localAttachCLaunch">
|
||||
</launchConfigurationType>
|
||||
<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
|
||||
icon="icons/c_app.gif"
|
||||
configTypeID="org.eclipse.cdt.launch.localCLaunch"
|
||||
id="org.eclipse.cdt.launch.localRunLaunchImage">
|
||||
</launchConfigurationTypeImage>
|
||||
<launchConfigurationTypeImage
|
||||
icon="icons/c_app.gif"
|
||||
configTypeID="org.eclipse.cdt.launch.localAttachCLaunch"
|
||||
id="org.eclipse.cdt.launch.localAttachLaunchImage">
|
||||
</launchConfigurationTypeImage>
|
||||
<launchConfigurationTypeImage
|
||||
icon="icons/c_app.gif"
|
||||
configTypeID="org.eclipse.cdt.launch.coreFileCLaunch"
|
||||
id="org.eclipse.cdt.launch.coreFileLaunchImage">
|
||||
</launchConfigurationTypeImage>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
|
||||
<launchConfigurationTabGroup
|
||||
type="org.eclipse.cdt.launch.localCLaunch"
|
||||
class="org.eclipse.cdt.launch.internal.ui.LocalRunLaunchConfigurationTabGroup"
|
||||
id="org.eclipse.cdt.launch.localRunLaunchTabGroup">
|
||||
</launchConfigurationTabGroup>
|
||||
<launchConfigurationTabGroup
|
||||
type="org.eclipse.cdt.launch.localAttachCLaunch"
|
||||
class="org.eclipse.cdt.launch.internal.ui.LocalAttachLaunchConfigurationTabGroup"
|
||||
id="org.eclipse.cdt.launch.localAttachLaunchTabGroup">
|
||||
</launchConfigurationTabGroup>
|
||||
<launchConfigurationTabGroup
|
||||
type="org.eclipse.cdt.launch.coreFileCLaunch"
|
||||
class="org.eclipse.cdt.launch.internal.ui.CoreFileLaunchConfigurationTabGroup"
|
||||
id="org.eclipse.cdt.launch.voreFileCLaunchTabGroup">
|
||||
</launchConfigurationTabGroup>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.debug.ui.launchShortcuts">
|
||||
<shortcut
|
||||
label="%CApplicationShortcut.label"
|
||||
icon="icons/c_app.gif"
|
||||
modes="run, debug"
|
||||
class="org.eclipse.cdt.launch.internal.CApplicationLaunchShortcut"
|
||||
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="%ContextualRunCApplication.label"/>
|
||||
<contextLabel
|
||||
mode="debug"
|
||||
label="%ContextualDebugCApplication.label"/>
|
||||
</contextualLaunch>
|
||||
<perspective
|
||||
id="org.eclipse.cdt.ui.CPerspective">
|
||||
</perspective>
|
||||
<perspective
|
||||
id="org.eclipse.debug.ui.DebugPerspective">
|
||||
</perspective>
|
||||
</shortcut>
|
||||
</extension>
|
||||
<!-- Property testers -->
|
||||
<extension point="org.eclipse.core.expressions.propertyTesters">
|
||||
<propertyTester
|
||||
namespace="org.eclipse.cdt.launch"
|
||||
properties="isExecutable"
|
||||
type="org.eclipse.core.runtime.IAdaptable"
|
||||
class="org.eclipse.cdt.launch.internal.CPropertyTester"
|
||||
id="org.eclipse.cdt.launch.CPropertyTester">
|
||||
</propertyTester>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.debug.core.statusHandlers">
|
||||
<statusHandler
|
||||
code="100"
|
||||
plugin="org.eclipse.cdt.launch"
|
||||
class="org.eclipse.cdt.launch.internal.ui.ProcessPrompter"
|
||||
id="org.eclipse.cdt.launch.statusHandler.processPrompter">
|
||||
</statusHandler>
|
||||
<statusHandler
|
||||
code="101"
|
||||
plugin="org.eclipse.cdt.launch"
|
||||
class="org.eclipse.cdt.launch.internal.ui.CoreFilePrompter"
|
||||
id="org.eclipse.cdt.launch.statusHandler.coreFilePrompter">
|
||||
</statusHandler>
|
||||
</extension>
|
||||
|
||||
<!-- Adapters for contextual launch -->
|
||||
<extension point="org.eclipse.core.runtime.adapters">
|
||||
<factory
|
||||
class=""
|
||||
adaptableType="org.eclipse.cdt.core.model.IBinary">
|
||||
<adapter type="org.eclipse.debug.ui.actions.ILaunchable"/>
|
||||
</factory>
|
||||
<factory
|
||||
class=""
|
||||
adaptableType="org.eclipse.core.resources.IResource">
|
||||
<adapter type="org.eclipse.debug.ui.actions.ILaunchable"/>
|
||||
</factory>
|
||||
</extension>
|
||||
|
||||
</plugin>
|
||||