Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/robertapplin/boost-example


https://github.com/robertapplin/boost-example

Last synced: 28 days ago
JSON representation

Awesome Lists containing this project

README

        

## Building instructions

Create a conda environment using the `environment.yml` file in this repo:

```sh
conda env create -f environment.yml
```

Activate the environment:

```sh
conda activate dev-env
```

Configure and generate your build files from the source directory:

```sh
cmake --preset=ninja .
```

Navigate to your build directory and build the project:

```sh
cd ../build && ninja
```

Run the test python script:

```sh
PYTHONPATH=$PWD/ python ../boost-example/test.py
```