$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-build] Install bitmaps/graphics with install rule
From: Phillip Seaver (phil_at_[hidden])
Date: 2010-05-17 23:36:38
On 5/17/2010 4:58 PM, tr1gun wrote:
> Hello,
>
> is it possible to install prebuilt libs and bitmaps with the install rule?
> Thanks in advance.
>
Here's a quick example. The name after "install" doesn't affect
anything as far as I know. It's just a name for the target.
local location = /somewhere
exe foo : foo.c ;
install inst-exe
: foo
: <location>$(location)
;
install inst-others
: foo.bmp
: <location>$(location)
;
On Windows, that will copy foo.exe and foo.bmp to /somewhere (most
likely c:\somewhere).
HTH,
Phillip