Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Oberhuber2014-05-17 21:53:07 +0000
committerDoug Schaefer2014-05-26 13:38:09 +0000
commit251d54056ed6e8114ffd75b98be460fb8ce82f16 (patch)
tree8a5df51552e6c74dc2558c6eddfea3c9a5e5b697 /core/org.eclipse.cdt.core/plugin.properties
parent0f6719cc7184360281e3aed236c7b8cb7c4466af (diff)
downloadorg.eclipse.cdt-251d54056ed6e8114ffd75b98be460fb8ce82f16.tar.gz
org.eclipse.cdt-251d54056ed6e8114ffd75b98be460fb8ce82f16.tar.xz
org.eclipse.cdt-251d54056ed6e8114ffd75b98be460fb8ce82f16.zip
Bug 303083 - Split out the CDT Spawner into a separate feature
This commit creates a new feature "org.eclipse.cdt.spawner" which is included by the cdt.platform feature and only holds the CDT native code fragments along with a new bundle named "org.eclipse.cdt.core.spawner" as their new fragment host. This new feature and bundle provide access to the CDT PTY, Spawner, Windows Registry Accesss and Tasklist capabilities without having to depend on the full cdt.core bundle. Nothing changes for existing consumers of the cdt.platform feature, or cdt.sdk feature (the new feature and bundle are installed and pulled in automatically). Consumers who only installed the org.eclipse.cdt bundle in the past will now also need the new spawner bundle. Change-Id: I3943b35948d1bba4771f715c5e700570aa2ae125 Signed-off-by: Martin Oberhuber <martin.oberhuber@windriver.com> Reviewed-on: https://git.eclipse.org/r/27225 Tested-by: Hudson CI Reviewed-by: Anton Leherbauer <anton.leherbauer@windriver.com> Tested-by: Anton Leherbauer <anton.leherbauer@windriver.com> Reviewed-by: Doug Schaefer <dschaefer@qnx.com>
Diffstat (limited to 'core/org.eclipse.cdt.core/plugin.properties')
-rwxr-xr-xcore/org.eclipse.cdt.core/plugin.properties17
1 files changed, 2 insertions, 15 deletions
diff --git a/core/org.eclipse.cdt.core/plugin.properties b/core/org.eclipse.cdt.core/plugin.properties
index 9f72cc6d3a7..bb82bdfb37d 100755
--- a/core/org.eclipse.cdt.core/plugin.properties
+++ b/core/org.eclipse.cdt.core/plugin.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2003, 2011 IBM Corporation and others.
+# Copyright (c) 2003, 2014 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
# Contributors:
# IBM Corporation - initial API and implementation
# Anton Leherbauer (Wind River Systems)
+# Martin Oberhuber (Wind River) - [303083] Split out the Spawner
###############################################################################
pluginName=C/C++ Development Tools Core
providerName=Eclipse CDT
@@ -83,20 +84,6 @@ fileTypeMapping.assemblySourceFile=Assembly Source File
fileTypeMapping.cHeaderFile=C Header File
fileTypeMapping.cppHeaderFile=C++ Header File
-fragmentName.aix = C/C++ Development Tools Core for AIX
-fragmentName.linux = C/C++ Development Tools Core for Linux
-fragmentName.linux.ia64 = C/C++ Development Tools Core for Linux (ia64)
-fragmentName.linux.ppc = C/C++ Development Tools Core for Linux (ppc)
-fragmentName.linux.ppc64 = C/C++ Development Tools Core for Linux (ppc64)
-fragmentName.linux.x86 = C/C++ Development Tools Core for Linux (x86)
-fragmentName.linux.x86_64 = C/C++ Development Tools Core for Linux (x86_64)
-fragmentName.qnx = C/C++ Development Tools Core for QNX
-fragmentName.solaris = C/C++ Development Tools Core for Solaris
-fragmentName.win32 = C/C++ Development Tools Core for Windows
-fragmentName.win32.x86 = C/C++ Development Tools Core for Windows (x86)
-fragmentName.win32.x86_64 = C/C++ Development Tools Core for Windows (x86_64)
-fragmentName.macosx = C/C++ Development Tools Core for MacOS X
-
cSourceName=C Source File
cHeaderName=C Header File
cxxSourceName=C++ Source File

Back to the top