What is a good step by step explanation on how to use Boost in an empty project in Visual Studio 2010.
|
feedback
|
|
While Nate's answer is pretty good already, I'm going to expand on it more specifically for Visual Studio 2010 as requested, and include information on compiling in the various optional components which requires external libraries. If you are using headers only libraries, then all you need to do is to unarchive the boost download and set up the environment variables. The instruction below set the environment variables for Visual Studio only, and not across the system as a whole. Note you only have to do it once.
If you want to use the part of boost that require building, but none of the features that requires external dependencies, then building it is fairly simple.
If you want the optional components, then you have more work to do. These are:
Boost.IOStreams Bzip2 filters:
Boost.IOStreams Zlib filters
Boost.MPI
Boost.Python
Boost.Regex ICU support
| |||||||||||||||||
feedback
|
|
While the instructions on the Boost web site are helpful, here is a condensed version that also builds x64 libraries.
Build the 32-bit librariesThis installs the Boost header files under
Build the 64-bit librariesThis installs the Boost header files under
| ||||
|
feedback
|
|
What parts of Boost do you need? A lot of stuff is part of TR1 which is shipped with Visual Studio, so you could simply say, for example:
According to James, this should also work:
| |||||||
feedback
|
|
| |||||
feedback
|
|
Also a little note: If you want to reduce the compilation-time, you can add the flag
to run two parallel builds at the same time. This might reduce it to viewing one movie ;) | |||
|
feedback
|
|
You can also try -j%NUMBER_OF_PROCESSORS% as an argument it will use all your cores. Makes things super fast on my quad core. | |||
|
feedback
|
|
I could recommend the following trick: Create a special boost.props file
This procedure has the value that boost is included only in projects where you want to explicityly include it. When you have a new project that uses boost, do:
| |||
|
feedback
|
|
what about the | ||||
|
feedback
|
|
A small addition to KTC's very informative main answer: If you are using the free Visual Studio c++ 2010 Express, and managed to get that one to compile 64-bits binaries, and now want to use that to use a 64-bits version of the Boost libaries, you may end up with 32-bits libraries (your mileage may vary of course, but on my machine this is the sad case). I could fix this using the following: inbetween the steps described above as
I inserted a call to 'setenv' to set the environment. For a release build, the above steps become:
I found this info here: http://boost.2283326.n4.nabble.com/64-bit-with-VS-Express-again-td3044258.html | ||||
|
feedback
|