wip
This commit is contained in:
parent
7a2e60d877
commit
1e7cdffd69
15
README.md
15
README.md
|
|
@ -4,11 +4,22 @@ and public headers.
|
||||||
|
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
* Ubuntu 22.04 (or equivalent)
|
* Ubuntu 22.04 (or equivalent)
|
||||||
* Python3 venv support installed (i.e. `sudo apt install python3-venv`)
|
* Additional required packages:
|
||||||
|
* `python3-venv`
|
||||||
|
* `g++`
|
||||||
|
* `cmake`
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
Create a `python` virtual environment and install `conan`:
|
1. Create a `python` virtual environment, install `conan`, and create a default profile:
|
||||||
```bash
|
```bash
|
||||||
python3 -m venv conan.venv
|
python3 -m venv conan.venv
|
||||||
source conan.venv/bin/activate
|
source conan.venv/bin/activate
|
||||||
|
pip install conan
|
||||||
|
conan profile detect
|
||||||
|
```
|
||||||
|
|
||||||
|
## Build
|
||||||
|
1. To build, run:
|
||||||
|
```bash
|
||||||
|
./build.sh
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue