Is it possible to make automatic build of the current boost libraries with b2.exe tool for "v110_xp" platform toolset?
I looking for something like this:
set MSVC_TOOLSET=msvc-11.0_xp
set PLATFORM_TOOLSET=v110_xp
b2 --build-dir="..\32\%PLATFORM_TOOLSET%\build" toolset=%MSVC_TOOLSET% --stagedir="..\32\%PLATFORM_TOOLSET%\lib\Debug" variant=debug
It looks like there is currently no command line support for this scenario. Is it correct?
It looks like you can build Boost with the platform toolset v110 and use these in your application that you build with platform toolset v110_xp. See: vs2012 toolset compatibility
I still need to test this, though. Perhaps someone else has more experience with this.