Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README #325

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down