boost

Collection of portable C++ source libraries for development.

brewmacoslinux
Try with needOr install directly
Source

About

Collection of portable C++ source libraries

Examples

link boost libraries into a C++ project$ clang++ -I/usr/local/include -L/usr/local/lib myprogram.cpp -lboost_system -o myprogram
check boost version installed on system$ ls -la /usr/local/opt/boost/include/boost/version.hpp
compile C++ code using boost filesystem library$ g++ -I/usr/local/opt/boost/include -L/usr/local/opt/boost/lib myapp.cpp -lboost_filesystem -o myapp
find boost header files location for includes$ brew --prefix boost
verify boost library files are available$ ls /usr/local/opt/boost/lib/libboost_*.dylib