boost-build

C++ build system with dependency management and multi-platform support.

brewmacoslinux
Try with needOr install directly
Source

About

C++ build system

Commands

b2

Examples

build a C++ project with default settings$ b2
compile C++ code in release mode$ b2 variant=release
build and install libraries to a specific directory$ b2 install --prefix=/usr/local
compile with multiple CPU cores for faster builds$ b2 -j4
build only specific targets from a project$ b2 //boost/system