https://github.com/robertapplin/boost-example
https://github.com/robertapplin/boost-example
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/robertapplin/boost-example
- Owner: robertapplin
- Created: 2024-05-19T09:28:22.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-19T09:56:29.000Z (about 2 years ago)
- Last Synced: 2025-06-30T16:51:17.691Z (12 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
```