From f4b46cd3dcda592a9f6569236832b05ed3314b22 Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 28 Jun 2017 08:27:52 +0200 Subject: [PATCH] Updated README.md to include standalone asio --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a7e15d7..593a4d6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Simple-Web-Server [![Build Status](https://travis-ci.org/eidheim/Simple-Web-Server.svg?branch=master)](https://travis-ci.org/eidheim/Simple-Web-Server) ================= -A very simple, fast, multithreaded, platform independent HTTP and HTTPS server and client library implemented using C++11 and Boost.Asio. Created to be an easy way to make REST resources available from C++ applications. +A very simple, fast, multithreaded, platform independent HTTP and HTTPS server and client library implemented using C++11 and Asio (both Boost.Asio and standalone Asio can be used). Created to be an easy way to make REST resources available from C++ applications. See https://github.com/eidheim/Simple-WebSocket-Server for an easy way to make WebSocket/WebSocket Secure endpoints in C++. Also, feel free to check out the new C++ IDE supporting C++11/14/17: https://github.com/cppit/jucipp. @@ -24,7 +24,8 @@ See particularly the JSON-POST (using Boost.PropertyTree) and the GET /match/[nu ### Dependencies -* Boost C++ libraries +* Boost.Asio or standalone Asio +* Boost is required to compile the examples * For HTTPS: OpenSSL libraries ### Compile and run