ipkn / crow

Crow is very fast and easy to use C++ micro web framework (inspired by Python Flask)
BSD 3-Clause "New" or "Revised" License
7.46k stars 889 forks source link

no amalgamtes/crow_all.h? #331

Open ghost opened 5 years ago

ghost commented 5 years ago

Hi, so in the readme.md it says to clone amalgamates/crow_all.h, But Im not finding it. Im only seeing merge_all.py, which is a python file (from the amalgamets dir) but Im not sure, any thoughts?

Shravan40 commented 5 years ago

You have to build the library locally on your machine, then only you are going to find that file.

1. git clone git@github.com:ipkn/crow.git
2. cd crow && mkdir build && cd build && cmake .. && make && sudo make install
3. cd amalgamate
4. ls

You will find crow_all.h in the directory.

In case you don't want to build the library, you can use this this

ghost commented 5 years ago

the other link is missing the boost/optional.hpp file, but thank you for letting me know how to use it!