$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Markus Schöpflin (markus.schoepflin_at_[hidden])
Date: 2002-07-08 10:41:06
Hi there,
using the toolset msvc-stlport I'm trying to link an external
library to my exe. The Jamfile looks something like
exe foo : foo.cpp : <find-library>$(SOME_PATH)/utility.lib ;
This works and links the external library. So far so good.
Now I would like to specify different libraries depending
on the value of some features. Something like
if I have this config => use this library
<runtime-build>debug <runtime-link>dynamic => utility_rtd.lib
<runtime-build>release <runtime-link>dynamic => utility_rt.lib
But I can't figure out how to do this. Could someone
point me in the right direction, please?
TIA, Markus