chester89
chester89

Reputation: 8607

how to install boost to the VS 2008?

I've almost completely installed Boost, but I have a problem with how to set my path to Boost in Tools->options->projects->VC++ Directories.

I've written the path to include files and libraries (my folder contains two subfolders, lib and include), but when I try to use Boost with #include boost/regex.hpp, I got this linking error:

LINK : fatal error LNK1104: cannot open file 'libboost_regex-vc90-mt-gd-1_36.lib

Could you please tell me how to install Boost correctly for Visual Studio 2008?

Upvotes: 6

Views: 8858

Answers (3)

Konrad Rudolph
Konrad Rudolph

Reputation: 546043

Use the Boost Installer by the Boost consulting group.

Upvotes: 13

Filip Frącz
Filip Frącz

Reputation: 5947

Also checkout this post for instructions on how to build Boost yourself.

Upvotes: 2

John D. Cook
John D. Cook

Reputation: 30097

You might be interested in the Visual Studio 2008 Feature pack. It adds many of the features that have only been available from Boost until now, the features that are part of the C++ TR1.

Upvotes: 2

Related Questions