Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robertapplin/boost-example
https://github.com/robertapplin/boost-example
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/robertapplin/boost-example
- Owner: robertapplin
- Created: 2024-05-19T09:28:22.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-19T09:56:29.000Z (7 months ago)
- Last Synced: 2024-05-19T10:34:55.113Z (7 months ago)
- Language: CMake
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```