Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2016-01-25 20:00:32 +0000
committerGerrit Code Review @ Eclipse.org2016-01-28 16:05:34 +0000
commit192bfff688f78729376a5063ae91e387fd04534b (patch)
tree157e6abb699053a4ed7e9209030a58d9c7ac6402 /qt/org.eclipse.cdt.qt.core/META-INF/MANIFEST.MF
parent99426ce65a1444ff52f17c3a291d55e99eb03a5d (diff)
downloadorg.eclipse.cdt-192bfff688f78729376a5063ae91e387fd04534b.tar.gz
org.eclipse.cdt-192bfff688f78729376a5063ae91e387fd04534b.tar.xz
org.eclipse.cdt-192bfff688f78729376a5063ae91e387fd04534b.zip
Bug 486509 - Add support for debugging local Qt apps.
We reuse GDBLaunch but need to override some settings that are normally in the launch configuration. These things are calculated at launch time. Note there is also an added dependency to the launch bar core to make GDBLaunch a targeted launch so we can set the target properly. At some point we'll move this launch target stuff lower down, maybe to the debug platform. Change-Id: Ibbf6b794a9ecf25b79d46093cc624ea69dc04641
Diffstat (limited to 'qt/org.eclipse.cdt.qt.core/META-INF/MANIFEST.MF')
-rw-r--r--qt/org.eclipse.cdt.qt.core/META-INF/MANIFEST.MF4
1 files changed, 3 insertions, 1 deletions
diff --git a/qt/org.eclipse.cdt.qt.core/META-INF/MANIFEST.MF b/qt/org.eclipse.cdt.qt.core/META-INF/MANIFEST.MF
index ac5d70d56a1..b84b9e14d67 100644
--- a/qt/org.eclipse.cdt.qt.core/META-INF/MANIFEST.MF
+++ b/qt/org.eclipse.cdt.qt.core/META-INF/MANIFEST.MF
@@ -18,7 +18,9 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.cdt.debug.core,
org.freemarker;bundle-version="2.3.22",
org.eclipse.cdt.build.core;bundle-version="1.0.0",
- org.eclipse.cdt.build.gcc.core;bundle-version="1.0.0"
+ org.eclipse.cdt.build.gcc.core;bundle-version="1.0.0",
+ org.eclipse.cdt.dsf.gdb;bundle-version="5.0.0",
+ org.eclipse.cdt.dsf;bundle-version="2.6.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin

Back to the top