diff --git a/README.md b/README.md index b9dd9f7..eb0b76b 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,22 @@ and public headers. ## Prerequisites * Ubuntu 22.04 (or equivalent) -* Python3 venv support installed (i.e. `sudo apt install python3-venv`) +* Additional required packages: + * `python3-venv` + * `g++` + * `cmake` ## Setup -Create a `python` virtual environment and install `conan`: +1. Create a `python` virtual environment, install `conan`, and create a default profile: ```bash python3 -m venv conan.venv source conan.venv/bin/activate +pip install conan +conan profile detect +``` + +## Build +1. To build, run: +```bash +./build.sh ```