Building on OS X
Available Versions
Boost
Boost: between 1.58 and 1.74
To install the default version of boost:
brew install boost
To install an older version of boost from our own HomeBrew Tap:
brew install bitshares/boost/boost@1.69
OpenSSL
OpenSSL: 1.0.x - 1.1.x series
You may have an older version of OpenSSL than is required. If so, have brew get the latest:
brew upgrade openssl
Compiling with these new versions: We must now tell cmake where these libraries are. Instead of the “cmake .” mentioned above, we use:
cmake -DBOOST_ROOT=/usr/local/opt/boost@1.69 -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl .
and then proceed with the normal:
make