As far as I understand the bcp tool, it is used to extract a subset of the sources from the boost tree. I'm not sure if the extracted sources can be built using bjam, but have you tried?
On how to build boost, simply have a look at their Getting Started Guide For Windows:
http://www.boost.org/doc/libs/release/more/getting_started/windows.html#or-build-binaries-from-source
You do not build boost libraries directly from Visual Studio, but rather use the bjam tool that will invoke Visual Studio for you to generate the binaries.
Oh, and regarding Boost.Interprocess:
There is no need to compile
Boost.Interprocess, since it's a
header only library. Just include your
Boost header directory in your
compiler include path.
You cannot create a lib for Boost.Interprocess, because it is a header-only library.