I Installed boost 1_60 using the visual studio 2015 command prompt:
bootstrap.bat
b2 --toolset=msvc-14.0 architecture=x86 address-model=64
However when I include the headers and link to the libraries in a new visual studio 2015 (update 1) project (target machine =x64) I obtain the following error:
error LNK2038: mismatch detected for '_MSC_VER': value '1800' doesn't match value '1900'
I manually renamed one of the lib files to vc120 and inlcuded them in a new visual studio 2013 project. No linker errors occur. So apparently boost compiled boost using the visual studio 2013 compiler instead of the visual studio 2015 compiler even when the toolset is set to msvc-14.0