Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 880c77c68246a9bd74f79b098ac924317618f793 (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
<?xml version="1.0" encoding="UTF-8"?>
<plugin
   id="org.eclipse.cdt.launch"
   name="CDT Launch Plug-in"
   version="0.0.1"
   provider-name="QNX Software Systems Ltd."
   class="org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin">

   <runtime>
      <library name="cdtlaunch.jar"/>
   </runtime>
   <requires>
      <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"/>
   </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>
   </extension>
   <extension
         point="org.eclipse.debug.ui.launchConfigurationTypeImages">
      <launchConfigurationTypeImage
            icon="icon/localCLaunch.gif"
            configTypeID="org.eclipse.cdt.launch.LocalCLaunch"
            id="org.eclipse.cdt.launch.localCLaunchImage">
      </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>
   </extension>
   <extension
         point="org.eclipse.debug.ui.launchShortcuts">
      <shortcut
            label="org.eclipse.cdt.launch.shortcut1"
            icon="org.eclipse.cdt.launch.shortcut1"
            modes="run,debug"
            class="org.eclipse.cdt.launch.LaunchShortcut1"
            id="org.eclipse.cdt.launch.localCShortcut">
      </shortcut>
   </extension>

</plugin>

Back to the top