$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-build] how to invoke custom rule explicit on install
From: Vladimir Prus (vladimir_at_[hidden])
Date: 2010-03-22 07:50:48
Ðвгений ШÑбин wrote:
> I have a custom rule. I want it to be invoked only when I type bjam install in command line.
Could you show the code? I assume you have a metatarget that should only be built as part of
install? Then:
whatever your-metargets : ... ;
expicit whatever ;
install dist : .... whatever ;
should do the desired effect.
- Volodya