From f663ecd09db5cba377726f527c396d3f59d9355d Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Mon, 6 Mar 2023 10:53:48 -0600 Subject: [PATCH] chore(docs): Add installation section to README --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 382a0bc0a4..7b51408af2 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,14 @@ cd cpp ./bootstrap.sh ``` +### Installing + +After the project has been built, such as with `./bootstrap.sh`, you can install the library on your system: + +```sh +cmake --install build +``` + ### Formatting Code is formatted using `clang-format` and the `./cpp/format.sh` script which is called via a git pre-commit hook.