I recently tried to install boost libraries in C++ 14, and I added it\'s include paths like:
Solution Explorer > Project Name > Property Pages > VC++ Directories > \
The include search path should point to the boost-installation root directory (the one that contains the Jamroot
file and a boost
subdirectory). The library search path should point to the correct library subfolder within the boost installation. This is one of the subfolders that start with lib64-msvc-**.*
(or lib32-msvc-*
if you're developing for 32bit).
The default install path of the binary boost package above will install it into C:\local\boost_<boost version>
. Make sure you use the paths from this installation directory and follow the instructions here.
Example:
Include search path:
C:\local\boost_1_64_0
Library search path:
C:\local\boost_1_64_0\lib64-msvc-14.1