$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Christopher Currie (gclbb-jamboost_at_[hidden])
Date: 2003-08-08 10:23:34
> I edited Jamfile. that what I had :
>
> exe hello : hello.cpp : <threading>multi ;
You've set the "requirements" on the target, where you probably wanted
to set "default-build" on the project. Add the following to the top of
the Jamfile:
project : default-build <threading>multi ;