Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2015-02-22 03:58:25 +0000
committerMarc-Andre2015-12-28 18:43:42 +0000
commitc29c9bc0579a955d20a98bc3b477ee53998e99d8 (patch)
tree81223d796052ba9d22c65fd05dcbaa0276bdef5a /build/org.eclipse.cdt.managedbuilder.ui/plugin.xml
parent1c258538dee14f70d9f309e4500c30da6b4ee8b9 (diff)
downloadorg.eclipse.cdt-c29c9bc0579a955d20a98bc3b477ee53998e99d8.tar.gz
org.eclipse.cdt-c29c9bc0579a955d20a98bc3b477ee53998e99d8.tar.xz
org.eclipse.cdt-c29c9bc0579a955d20a98bc3b477ee53998e99d8.zip
Bug 382746 - Adding C/C++ nature for C Project impossible
This patch modifies the wizard so that the C projects also show in the list of projects. - If a given C project is selected and the C nature is selected, the project is not modified. - If a given C project is selected and the C++ nature is selected, the C++ nature is added and project type and toolchain selection have no effect because it is assumed that the project type and toolchain had already been setup before hand. - Old-style projects (CDT 3.0) are not converted anymore. Unchanged behavior: - C++ projects never show in the list of projects. Removing nature is (still) unsupported. - Non-CDT project behave as they use to. Change-Id: Ie6282c11d90c42d21ecad2996ab49ebd64c38ece Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.ui/plugin.xml')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/plugin.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/plugin.xml b/build/org.eclipse.cdt.managedbuilder.ui/plugin.xml
index 9f9adfb4a21..39299a9a312 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/plugin.xml
+++ b/build/org.eclipse.cdt.managedbuilder.ui/plugin.xml
@@ -351,7 +351,7 @@
<adapt type="org.eclipse.core.resources.IProject" >
<test
property="org.eclipse.core.resources.projectNature"
- value="org.eclipse.cdt.core.cnature"/>
+ value="org.eclipse.cdt.core.ccnature"/>
</adapt>
</not>
</and>

Back to the top