Boost logo

Boost-Build :

From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-11-26 02:46:12


On Friday 26 November 2004 05:17, 1111 wrote:
> I would like to copy some files to the dist directory after exe files
> are built. What should i do? it seems the following stage<file-copy>
> doesn't respect implicit dependency

According to:

http://boost.org/boost-build2/doc/html/bbv2/reference/jamfiles.html

<implicit-dependency> should be used when there are generated headers, so most
likely you don't need to use it. What if you modify your Jamfile to read:

stage filecopy : [ glob data/*.dat data/*.txt ] : <variant>release
<location>dist : <dependency>dist ;

and run

bjam filecopy

? This should install "dist" as well.

- Volodya

 


Boost-Build 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