1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

call builder as full build

This commit is contained in:
David Inglis 2002-10-15 17:58:22 +00:00
parent 0440f4618e
commit ffbaedf13d
2 changed files with 7 additions and 3 deletions

View file

@ -13,3 +13,7 @@
over the code in the C/C++ Editor colour preference dialog. over the code in the C/C++ Editor colour preference dialog.
From Thomas Fletcher. From Thomas Fletcher.
2002-10-15 David Inglis
* MakeAction.java
Invoke builder as full build so that CBuilder is always invoked.

View file

@ -104,10 +104,10 @@ public class MakeAction extends Action {
if (target.isLeaf()) { if (target.isLeaf()) {
MakeUtil.setSessionTarget(project, target.toString()); MakeUtil.setSessionTarget(project, target.toString());
} }
//System.out.println ("Build0: " + res + " " + ta);
} }
//System.out.println ("Build: " + project); // Full build to force builder for targets like clean and rebuild.
project.build (IncrementalProjectBuilder.INCREMENTAL_BUILD, monitor); // maybe this should be a option
project.build (IncrementalProjectBuilder.FULL_BUILD, monitor);
} catch (CoreException e) { } catch (CoreException e) {
} }