Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Rentz-Reichert2016-08-11 16:31:20 +0000
committerHenrik Rentz-Reichert2016-08-11 16:32:57 +0000
commitbc7300dad3bb0446e11d7ca691486c9cf1e3ce5e (patch)
tree0da4ae1327e799960a4b59f72548ceb1eee81949 /plugins/org.eclipse.etrice.generator.ui.cdt
parentcc3093fe8f33d131870d6f5ef468c22c0420870e (diff)
downloadorg.eclipse.etrice-bc7300dad3bb0446e11d7ca691486c9cf1e3ce5e.tar.gz
org.eclipse.etrice-bc7300dad3bb0446e11d7ca691486c9cf1e3ce5e.tar.xz
org.eclipse.etrice-bc7300dad3bb0446e11d7ca691486c9cf1e3ce5e.zip
added xmc1000 C/C++ configuration of include paths
Diffstat (limited to 'plugins/org.eclipse.etrice.generator.ui.cdt')
-rw-r--r--plugins/org.eclipse.etrice.generator.ui.cdt/src/org/eclipse/etrice/generator/ui/cdt/CProjectConfigurator.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.generator.ui.cdt/src/org/eclipse/etrice/generator/ui/cdt/CProjectConfigurator.java b/plugins/org.eclipse.etrice.generator.ui.cdt/src/org/eclipse/etrice/generator/ui/cdt/CProjectConfigurator.java
index 74900cf17..3fe5f9318 100644
--- a/plugins/org.eclipse.etrice.generator.ui.cdt/src/org/eclipse/etrice/generator/ui/cdt/CProjectConfigurator.java
+++ b/plugins/org.eclipse.etrice.generator.ui.cdt/src/org/eclipse/etrice/generator/ui/cdt/CProjectConfigurator.java
@@ -72,6 +72,10 @@ public class CProjectConfigurator extends ProjectConfigurator {
return true;
if (id.startsWith("cdt.managedbuild.tool.gnu.c.compiler.input"))
return true;
+ if (id.startsWith("com.ifx.xmc1000.compiler.option.include.paths"))
+ return true;
+ if (id.startsWith("com.ifx.xmc1000.cppcompiler.option.include.paths"))
+ return true;
if (id.startsWith("com.ifx.xmc4000.compiler.option.include.paths"))
return true;
if (id.startsWith("com.ifx.xmc4000.cppcompiler.option.include.paths"))

Back to the top