From e5af931c14ca0357771e49e177b06b4c727ddcf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Izzo?= Date: Tue, 30 Oct 2018 00:36:45 +0100 Subject: [PATCH] Update README The README was out-to-date, now it has been updated to reflect the current state of the project. --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4d90199b4..2c19ba0d2 100644 --- a/README.md +++ b/README.md @@ -89,11 +89,18 @@ CROW_ROUTE(app, "/add_json") ## How to Build -If you just want to use crow, copy amalgamate/crow_all.h and include it. +If you just want to use crow: + + - Clone this repository + - Run amalgamate/merge_all.py + - Copy amalgamate/crow_all.h and include in your project + - Compile using clang++ + - Use the following build options: `-std=c++11 -stdlib=libc++` + - Use the following linking options: `-lpthread -lboost` ### Requirements - - C++ compiler with good C++11 support (tested with g++>=4.8) + - C++ compiler with good C++11 support - boost library - CMake for build examples - Linking with tcmalloc/jemalloc is recommended for speed.