$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Sohail Somani (s.somani_at_[hidden])
Date: 2006-06-21 14:43:39
Hi,
If I have:
lib a : a.cpp ;
lib b : b.cpp ;
lib both : a b ;
Where I want both to export both a's and b's symbols, how can I use the
__object__ files that were inputs into the linker for targets a and b?
Does that make sense?
Currently, I am doing:
alias a : a.cpp ;
alias b : b.cpp ;
lib both : a b ;
Which is hackish. I know its possible with vs2k5's linker, but I'd
rather have this be independent of toolset.
Thanks
Sohail