Hello,
I am having a LINK error when I try to include stuff for serialization:

#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>

1>LINK : fatal error LNK1104: cannot open file 'libboost_serialization-vc100-mt-gd-1_46_1.lib'

So I am trying to build this, with the libs/serialization/vc7ide/BoostSerializationLibrary.sln using Microsoft Visual Studio 2010 Express on Windows 7 (64 bit).
Building the solution finished with:

========== Build: 2 succeeded, 88 failed, 0 up-to-date, 0 skipped ==========

With a lot of:

90>LINK : fatal error LNK1104: cannot open file 'boost_filesystem-vc100-mt-gd-1_46_1.lib'


So I tried next the libs/filesystem/v3/test/msvc10/filesystem-v3.sln.
Building the solution finished with 3 failed, but it was because it didn't find some of the tutorial projects,
so leaving those out from the build made:

========== Build: 10 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

But this doesn't seem to give me boost_filesystem-vc100-mt-gd-1_46_1.lib anywhere, so all the problems above remain.
What am I doing wrong?