boost

Collection of portable C++ source libraries for development

brewmacoslinux
Try with needOr install directly
Source

About

Collection of portable C++ source libraries

Commands

b2

Examples

Build Boost libraries from source using b2 build system$ b2 --with-system --with-filesystem install
Link Boost libraries in C++ projects by including headers$ clang++ -I$(brew --prefix boost)/include main.cpp -L$(brew --prefix boost)/lib -lboost_system -o app
Verify Boost installation and check available libraries$ ls $(brew --prefix boost)/lib