$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-build] Different builds for XP and Vista/7
From: Artem Alimarine (brakoziabr_at_[hidden])
Date: 2011-04-14 22:26:28
On 13-4-2011 11:41, Juraj IvanÄiÄ wrote:
> lib foo_lib : foo_xp.cpp : <target-os-windows:flavor>xp ;
> lib foo_lib : foo_vista.cpp : <target-os-windows:flavor>vista ;
The same thing - it does not build anything. However, it works as
expected with the following declaration:
lib bar_lib
:
:
<target-os>windows-xp:<source>foo_xp.cpp
<target-os>windows-vista:<source>foo_vista.cpp
;