追加到 boost build/b2/bjam 中的列表

Append to list in boost build/b2/bjam

我想知道如何在 boost 中将项目附加到列表中 build/b2/bjam。

我相信这一定很容易,但搜索引擎没有提供结果。 the documentation 中的 Ctrl+F 也无济于事!

要使用的运算符是 += as in GNU Make.

示例:

MYLIST = a b ;
MYLIST += c ;
echo $(MYLIST) ;

显示:a b c

并连接列表:

MYLIST = a b c ;
OTHERLIST = dd ee ;
MYLIST += $(OTHERLIST) ;
echo $(MYLIST) ;
import sequence ;
echo length: [ sequence.length $(MYLIST) ] ;

显示: a b c dd ee length: 5

可以在 Variables section of the documentation 中找到更多信息。