Added 'build-essential' as a requirement on ubuntu

I've had a fresh install of Kubuntu and for some reason that package was missing, maybe I removed it by mistake who knows.
So when I tried to run the project I got errors like these:
./../go/pkg/mod/github.com/gen2brain/raylib-go/raylib/rcamera.go:196:27: undefined: GetMouseDelta

After installing build-essential this problem was solved, so it would be good to add it as the requirements because it can also happen to others.
This commit is contained in:
Samuel Fontes 2024-10-02 13:28:59 -03:00 committed by GitHub
parent c66f9e2942
commit 6fa038ffbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@ It is also possible to use raylib-go without cgo (Windows only; see requirements
##### Ubuntu ##### Ubuntu
apt-get install libgl1-mesa-dev libxi-dev libxcursor-dev libxrandr-dev libxinerama-dev libwayland-dev libxkbcommon-dev apt-get install libgl1-mesa-dev libxi-dev libxcursor-dev libxrandr-dev libxinerama-dev libwayland-dev libxkbcommon-dev build-essential
##### Fedora ##### Fedora