$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2007-03-30 04:25:35
llwaeva_at_[hidden] wrote:
>> Hi there,
>> I am writing a DLL under Windows with MSVC 2005. In my project,
>> boost:regex is involved. I do nothing but include the following in my
>> stdafx.h
>
> I try to compile the project with OPTION /MD,; however, the compile
> report that libboost_regex-vc80-mt-s-1_33_1.lib cannot be found. It
> fails to compile the project even I specify the path and library while
> compiling. What's going on?
Make sure that the directory containing the regex lib's is in your linker's
search path. That's Properties -> Linker -> Additional Library Directories
in VC8.
John.