File size: 625 Bytes
1bd704f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Required Libraries (download once)
These are header-only libraries. Download them into this directory:
## httplib.h (cpp-httplib)
```bash
curl -L https://raw.githubusercontent.com/yhirose/cpp-httplib/master/httplib.h -o libs/httplib.h
```
## json.hpp (nlohmann/json)
```bash
curl -L https://raw.githubusercontent.com/nlohmann/json/develop/single_include/nlohmann/json.hpp -o libs/json.hpp
```
## Verify
After downloading, this directory should contain:
```
libs/
βββ README.md (this file)
βββ httplib.h (~800KB)
βββ json.hpp (~850KB)
```
Both are MIT licensed, single-header, no build step required.
|