Reputation:
i have boost librray 1.44.0 how can i build it?i am using visual studio 2010 thanks
Upvotes: 1
Views: 1265
Reputation: 193
go to your boost directory (c:\boost or whatever) and run: bootstrap.bat and then bjam.exe
It should generate the .lib files in $BOOST\stage\lib (about 850 MB :P)
Upvotes: 0
Reputation: 4341
You can use the tool bjam.exe
(just search for it in the www and download it).
When downloaded and extracted, just type bjam toolset=msvc-10.0 --build-type=complete stage
from the windows console in your boost directory. Then reference the include and lib directories within Visual Studio:
boost_1_44_0
(plus possibly boost_1_44_0\boost
)boost_1_44_0\stage\lib
Upvotes: 2