Compiler To add the include directory, add the boost path to:
project properties->C\C++ Build->Settings->Directories->GCC C++ Compiler->Directories
Note: add the folder where the βboostβ folder is located, so you can do
#include "boost/smart_ptr.hpp"
Linker To add the path to the library, add a search path (indicating where all the lib files are located):
project properties->C\C++ Build->Settings->Directories->MinGW C++ Linker->Libraries
(It is assumed that you are using the MinGW toolchain. It should be the same on other toolchains).
Greetings
source share