elemmire/README.md

23 lines
357 B
Markdown

# Elemmire
## Steps to build
* Install Conan>=2
```
conda install -c conda-forge conan
```
* Create a conan profile
```
conan profile detect --force
```
* Install dependencies with conan
```
conan install . --build=missing
conan install . --build=missing --profile=debug
```
* Build with meson
```
cd build
conan build .
conan build . --profile=debug
```