pluginbridge / libs /README.md
RAM2118's picture
Sprint 1: Add libs/README.md with download instructions for httplib.h and json.hpp
1bd704f verified
|
Raw
History Blame Contribute Delete
625 Bytes
# 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.