mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 06:02:11 +02:00
bug 333113: Rebuild last target: option to use build location of active build configuration
Patch from Axel Mueller
This commit is contained in:
parent
003e75e1bb
commit
81fde57a42
1 changed files with 2 additions and 1 deletions
|
@ -85,7 +85,8 @@ public class BuildLastTargetAction extends AbstractTargetAction {
|
|||
|
||||
// no last target found, let the user decide
|
||||
if (showDialog) {
|
||||
BuildTargetDialog dialog = new BuildTargetDialog(getShell(), container, false/*Recursive*/);
|
||||
boolean recursive = MakePreferencePage.useProjectLastMakeTarget();
|
||||
BuildTargetDialog dialog = new BuildTargetDialog(getShell(), container, recursive );
|
||||
if (dialog.open() == Window.OK) {
|
||||
IMakeTarget target = dialog.getTarget();
|
||||
if (target != null) {
|
||||
|
|
Loading…
Add table
Reference in a new issue