From a2eb5aee16ac5f7eee2fa27bb8cbb22ef73651ca Mon Sep 17 00:00:00 2001 From: Francis Quiers Date: Fri, 25 Jul 2025 18:25:39 +0100 Subject: [PATCH] Update prerequisites list in README --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a06cf60..1da458e 100644 --- a/README.md +++ b/README.md @@ -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 +```