Boost 1.60.0 to Visual Studio Integration on Windows
Introduction
Integrating Boost 1.60.0 with Visual Studio on Windows requires specific steps to ensure compatibility and proper functionality. This article will provide a comprehensive guide to help you successfully install and configure Boost for use in your Visual Studio projects.
Installation Steps
Post-Installation Configuration
1. Set BOOST_ROOT Environment Variable:
Create an environment variable named "BOOST_ROOT" and set its value to the installation directory of Boost, e.g., C:DestinationFolder. This variable is used by Visual Studio projects to locate Boost libraries.
2. Modify Project Properties:
In Visual Studio, open your project and navigate to the "Configuration Properties" for the appropriate configuration (e.g., Debug or Release).
3. Include Directories:
Add the following include directory to your project's "Include Directories":
"%BOOST_ROOT%boost"
4. Linker Input:
Modify the linker input to link with the appropriate Boost libraries. For example, for the Boost.Unittest library, add the following to the "Additional Dependencies":
"libboost_unit_test-mgw49-mt-fPIC-x86.a"
Additional Notes:
The above is the detailed content of How to Integrate Boost 1.60.0 with Visual Studio on Windows?. For more information, please follow other related articles on the PHP Chinese website!