This commit is contained in:
Ron Hough 2023-03-11 14:33:50 -06:00
parent 7a2e60d877
commit 1e7cdffd69
1 changed files with 13 additions and 2 deletions

View File

@ -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
```