Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Rentz-Reichert2013-05-08 08:32:13 +0000
committerHenrik Rentz-Reichert2013-05-08 08:32:13 +0000
commit129108f8287b5657d3e8da2171aea2aed8f84a21 (patch)
tree2e196599901b0d80fd564308e4b894c50ebae049 /plugins/org.eclipse.etrice.generator.launch.c
parenteab4553189399180d9e6cd0082284c3c3ebc30e7 (diff)
downloadorg.eclipse.etrice-129108f8287b5657d3e8da2171aea2aed8f84a21.tar.gz
org.eclipse.etrice-129108f8287b5657d3e8da2171aea2aed8f84a21.tar.xz
org.eclipse.etrice-129108f8287b5657d3e8da2171aea2aed8f84a21.zip
[generator.launch.c] added -debug option
Diffstat (limited to 'plugins/org.eclipse.etrice.generator.launch.c')
-rw-r--r--plugins/org.eclipse.etrice.generator.launch.c/src/org/eclipse/etrice/generator/launch/c/CGeneratorLaunchConfigurationDelegate.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.generator.launch.c/src/org/eclipse/etrice/generator/launch/c/CGeneratorLaunchConfigurationDelegate.java b/plugins/org.eclipse.etrice.generator.launch.c/src/org/eclipse/etrice/generator/launch/c/CGeneratorLaunchConfigurationDelegate.java
index 7421b957a..a0214b546 100644
--- a/plugins/org.eclipse.etrice.generator.launch.c/src/org/eclipse/etrice/generator/launch/c/CGeneratorLaunchConfigurationDelegate.java
+++ b/plugins/org.eclipse.etrice.generator.launch.c/src/org/eclipse/etrice/generator/launch/c/CGeneratorLaunchConfigurationDelegate.java
@@ -43,6 +43,9 @@ public class CGeneratorLaunchConfigurationDelegate extends GeneratorLaunchConfig
if (configuration.getAttribute(CGeneratorConfigTab.GEN_DOCUMENTATION, false)
|| configuration.getAttribute(CGeneratorConfigTab.GEN_INSTANCE_DIAGRAM, false))
argString.append(" "+Main.OPTION_GEN_INST_DIAG);
+ if (configuration.getAttribute(CGeneratorConfigTab.DEBUG, false)) {
+ argString.append(" "+Main.OPTION_DEBUG);
+ }
ScopedPreferenceStore prefStore = new ScopedPreferenceStore(InstanceScope.INSTANCE, "org.eclipse.etrice.generator.ui");
if (prefStore.getBoolean(PreferenceConstants.GEN_INCREMENTAL)) {

Back to the top