Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56210 - sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules
From: frank.birbacher_at_[hidden]
Date: 2009-09-15 08:03:06


Author: birbacher
Date: 2009-09-15 08:03:05 EDT (Tue, 15 Sep 2009)
New Revision: 56210
URL: http://svn.boost.org/trac/boost/changeset/56210

Log:
extended list of main target types
Text files modified:
   sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/CommandsRule.java | 2 +-
   sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/MainTargetRuleRule.java | 3 ++-
   2 files changed, 3 insertions(+), 2 deletions(-)

Modified: sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/CommandsRule.java
==============================================================================
--- sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/CommandsRule.java (original)
+++ sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/CommandsRule.java 2009-09-15 08:03:05 EDT (Tue, 15 Sep 2009)
@@ -11,7 +11,7 @@
 public class CommandsRule extends WordRuleBase {
     static private final String[] targets = new String[] { "import", "using",
             "build-project", "explicit", "requirements", "usage-requirements",
- "build-dir", };
+ "build-dir" };
 
     public CommandsRule(final IToken token) {
         super(targets, token);

Modified: sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/MainTargetRuleRule.java
==============================================================================
--- sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/MainTargetRuleRule.java (original)
+++ sandbox-branches/birbacher/eclipse_contrib/JamfileEditor/src/org/boost/eclipse/bjam/editor/rules/MainTargetRuleRule.java 2009-09-15 08:03:05 EDT (Tue, 15 Sep 2009)
@@ -11,7 +11,8 @@
 public class MainTargetRuleRule extends WordRuleBase {
     public static final String[] targets = new String[] { "exe", "lib",
             "alias", "project", "boost-build", "install", "stage",
- "use-project", "rc", "obj", "h", "cpp", "slices" };
+ "use-project", "rc", "obj", "h", "cpp", "slices", "bundle", "make",
+ "notfile", "test-suite" };
 
     public MainTargetRuleRule(final IToken token) {
         super(targets, token);


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk