cpprestsdk

Installing Microsoft Casablanca (cpprestsdk) on RHEL7 / CentOS7

This is a library used to run a HTTP/HTTPS server for a REST API. Prerequisites devtoolset-7 (might not be required, but this is what I built/tested with) boost (built-in boost 1.53 no good for casablanca) websocketpp Shell commands in install cpprestsdk sudo yum -y install openssl-devel mkdir -p ~/src && cd ~/src git clone https://github.com/Microsoft/cpprestsdk.git …

Installing Microsoft Casablanca (cpprestsdk) on RHEL7 / CentOS7 Read More »

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