Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston2014-05-01 18:42:16 +0000
committerJeff Johnston2014-05-05 19:39:30 +0000
commit6acb6dbc70ea67cbea3467709f41c4ffad9288c0 (patch)
tree4fb4e78059dd89deafdb1fbdfaf4acaccde65d48 /debug/org.eclipse.cdt.debug.standalone-feature/feature.xml
parent4353aad6d5ae63c82977ca830e52a372d6e7774a (diff)
downloadorg.eclipse.cdt-6acb6dbc70ea67cbea3467709f41c4ffad9288c0.tar.gz
org.eclipse.cdt-6acb6dbc70ea67cbea3467709f41c4ffad9288c0.tar.xz
org.eclipse.cdt-6acb6dbc70ea67cbea3467709f41c4ffad9288c0.zip
Add CDT Standalone Debugger
- add org.eclipse.cdt.debug.application plugin which supports running CDT debugger as Eclipse application - add org.eclipse.cdt.debug.application.docs plugin which is the modified CDT docs - add org.eclipse.cdt.debug.standalone-feature which bundles the two aforementioned plugins - add org.eclipse.cdt.debug.standlone.source-feature Change-Id: I1a1ae855ab3912e678b7d9e3465e2fbbfe949e13 Reviewed-on: https://git.eclipse.org/r/25845 Reviewed-by: Jeff Johnston <jjohnstn@redhat.com> Tested-by: Jeff Johnston <jjohnstn@redhat.com>
Diffstat (limited to 'debug/org.eclipse.cdt.debug.standalone-feature/feature.xml')
-rw-r--r--debug/org.eclipse.cdt.debug.standalone-feature/feature.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.standalone-feature/feature.xml b/debug/org.eclipse.cdt.debug.standalone-feature/feature.xml
new file mode 100644
index 00000000000..0a640b440a6
--- /dev/null
+++ b/debug/org.eclipse.cdt.debug.standalone-feature/feature.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.cdt.debug.standalone"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin
+ id="org.eclipse.cdt.debug.application"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.eclipse.cdt.debug.application.doc"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>

Back to the top