$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: frank.birbacher_at_[hidden]
Date: 2008-05-02 23:10:39
Author: birbacher
Date: 2008-05-02 23:10:38 EDT (Fri, 02 May 2008)
New Revision: 45055
URL: http://svn.boost.org/trac/boost/changeset/45055
Log:
extended list of recognized bjam main target rules
Text files modified:
sandbox-branches/birbacher/eclipse_contrib/JamfileTargets/src/org/boost/eclipse/bjam/system/JamfileScanner.java | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
Modified: sandbox-branches/birbacher/eclipse_contrib/JamfileTargets/src/org/boost/eclipse/bjam/system/JamfileScanner.java
==============================================================================
--- sandbox-branches/birbacher/eclipse_contrib/JamfileTargets/src/org/boost/eclipse/bjam/system/JamfileScanner.java (original)
+++ sandbox-branches/birbacher/eclipse_contrib/JamfileTargets/src/org/boost/eclipse/bjam/system/JamfileScanner.java 2008-05-02 23:10:38 EDT (Fri, 02 May 2008)
@@ -52,7 +52,8 @@
private static boolean isKnownTargetType(final String type) {
final String[] targets = new String[] { "exe", "lib", "alias",
- "project", "boost-build", "install", "stage", "use-project" };
+ "project", "boost-build", "install", "stage", "use-project",
+ "doxygen", "xml", "boostbook" };
for (final String word : targets)
if (word.equals(type))
return true;