Installing Websocketpp on RHEL7 / CentOS7

This is a requirement for cpprestsdk (Microsoft Casablanca).

sudo yum -y install cmake3
mkdir -p ~/src && cd ~/src
git clone https://github.com/zaphoyd/websocketpp.git
cd websocketpp
mkdir build && cd build && cmake3 ..
make
sudo make install

 

Leave a Comment