Forgot the little matrix wrapper.

This commit is contained in:
Zed A. Shaw 2024-12-02 08:11:47 -05:00
parent aadf15e439
commit c11384df59
2 changed files with 41 additions and 1 deletions

View file

@ -84,7 +84,33 @@ See? That's how Free Speech works. You don't need a LICENSE.
## Build Instructions
Coming soon, but I do know it builds on OSX and Linux. I primarily work on Windows.
Pre-requisites:
* Meson -- which need Python
* C++ Compiler -- Tested with Clang and G++
* GNU make -- For the convenience Makefile
Windows instructions
```shell
git clone https://git.learnjsthehardway.com/learn-code-the-hard-way/roguish.git
cd roguish
# ignore the errors the first time
./scripts/reset_build.ps1
# first compile takes a while
make
# will play a sound and open windows
make test
# this copies the binary so you can run it
make run
```
## OSX Build Notes