meson build instructions

This commit is contained in:
rcxpony
2025-08-21 03:50:51 +05:00
parent f0befd4925
commit 558b6b3a2c

View File

@@ -3,14 +3,14 @@
# How to build for CPU
```sh
git clone https://rcxpony.name/rcxpony/yggm.git && cd yggm
cmake -B build && cmake --build build -j$(nproc)
build/yggm -t 10
meson setup build -Dbuildtype=release && cd build
meson compile && ./yggm -t 10
```
# How to build for GPU
```sh
git clone https://rcxpony.name/rcxpony/yggm.git && cd yggm/build
make -j$(nproc)
./yggmcu -t 10
meson setup build -Dbuildtype=release && cd build
meson compile && ./yggmcu -t 10
```
# ToDo
- [x] CUDA support