1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 14:12:10 +02:00
cdt/codan/org.eclipse.cdt.codan.ui.cxx/plugin.xml
Doug Schaefer 3a81f65932 Bug 437392 - Added the Launch Targets View.
This view lists all launch targets that could appear in the Target
selector. It allows us to add context menus to them to perform
operations, such as opening a terminal view to the target. It will
also gives us a cleaner UI to add and remove targets

Change-Id: I538a204ce6f25fd017573c50585ac45cdeeaf554
Reviewed-on: https://git.eclipse.org/r/31856
Tested-by: Hudson CI
Reviewed-by: Jonathan Williams <jonwilliams@qnx.com>
Reviewed-by: Doug Schaefer <dschaefer@qnx.com>
2014-08-19 10:22:01 -04:00

47 lines
1.7 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.startup">
<startup
class="org.eclipse.cdt.codan.internal.ui.cxx.Startup"></startup>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:org.eclipse.ui.popup.any?after=additions">
<command
commandId="org.eclipse.cdt.codan.commands.runCodanCommand"
icon="platform:/plugin/org.eclipse.cdt.codan.ui/icons/search_bug.gif"
id="org.eclipse.cdt.codan.ui.cxx.menus.runCodanCxxCommand"
label="%command.name"
mnemonic="%command.mnemonic">
<visibleWhen checkEnabled="false">
<iterate ifEmpty="false">
<adapt type="org.eclipse.core.resources.IResource">
<test
forcePluginActivation="true"
property="org.eclipse.core.resources.projectNature"
value="org.eclipse.cdt.core.cnature"/>
</adapt>
</iterate>
</visibleWhen>
</command>
</menuContribution>
<!-- <menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="org.eclipse.cdt.codan.ui.cxx.toolbars.sampleToolbar">
<command
commandId="org.eclipse.cdt.codan.ui.cxx.commands.runCodanCxxCommand"
icon="icons/sample.gif"
id="org.eclipse.cdt.codan.ui.cxx.toolbars.sampleCommand"
tooltip="%command.name">
</command>
</toolbar>
</menuContribution> -->
</extension>
</plugin>