update readme install and build instructions

This commit is contained in:
Luca Conte 2025-03-06 02:50:15 +01:00
parent 43d365eef4
commit 6b87b05634
1 changed files with 21 additions and 3 deletions

View File

@ -1,9 +1,27 @@
# Dependencies Installieren
```bash
sudo apt-get update
sudo apt-get install libglfw3 libglfw3-dev
sudo apt-get install libglew-dev
sudo apt update
# basic build tools such as gcc
sudo apt install build-essential
# meson and ninja for building
sudo apt install meson ninja-build
# glfw
sudo apt install libglfw3 libglfw3-dev
# glew
sudo apt install libglew-dev
```
# Building and running
```
meson setup build
meson compile -C build
./build/cg1
```
# WSL