Skip to content
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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,10 @@ CMake parameters.
## Prerequisites

You need openssl 1.1 or greater installed, C++ compiler, make, and cmake. To
run tests, you will need the doctest framework.
run tests, you will need the doctest framework and Niels Lohmann's json library.
To automatically format the code, you will need clang-format.

Here is an example command to install these packages on Linux Ubuntu:
```
sudo apt update && sudo apt-get -y install clang clang-format clang-tidy cmake doctest-dev libssl-dev nlohmann-json3-dev
```