diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 24 |
1 files changed, 20 insertions, 4 deletions
@@ -1,5 +1,21 @@ -Running loccaly: -i dont know just have it work + + - - +# Running + +## Requirement + +- Cmake (3.24+) +- C/C++ compiler that supports c 23 and c++ 23 standard (GCC 14+, Clang 18+) +- ASan (sudo dnf install libasan) +- UBSan (sudo dnf install libubsan) + +## Building + +```bash +cmake -B build -S . # Run only one time + +cmake --build ./build # Build + +./build/chess # Run the app +``` |
