debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/SystemTRKLaunchWizard.java
changeset 273 c2533fd23253
parent 212 0e84cf0560e1
child 566 960058f9da89
child 1968 3482df86a51d
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/SystemTRKLaunchWizard.java	Thu Jun 18 15:26:18 2009 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/SystemTRKLaunchWizard.java	Thu Jun 18 16:52:27 2009 -0500
@@ -29,6 +29,7 @@
 import java.util.List;
 
 public class SystemTRKLaunchWizard extends AbstractLaunchWizard {
+    private BuildOptionsSelectionPage fBuildOptionsSelectionPage;
     private TRKConnectionWizardPage fMainPage;
 	private boolean hasFinished = false;
 
@@ -54,7 +55,9 @@
  
     public void addPages() {
     	super.addPages();
+        fBuildOptionsSelectionPage = new BuildOptionsSelectionPage();
         fMainPage = new TRKConnectionWizardPage(this);
+        addPage(fBuildOptionsSelectionPage);
         addPage(fMainPage);
         addPage(getSummaryPage());
 	    getBinarySelectionPage().setPathValidator(new IPathValidator() {
@@ -89,6 +92,7 @@
     			SettingsData.setProcessToLaunch(config, processToLaunchTargetPath);
     		
     		// now let the wizard pages update values 
+    		fBuildOptionsSelectionPage.updateConfiguration(config);
     		fMainPage.updateConfiguration(config);
     		
 		} catch (CoreException e) {