Add build requirements

This commit is contained in:
2025-10-03 23:42:36 +02:00
parent cb22b6d226
commit 138e8474c1
2 changed files with 15 additions and 0 deletions
Executable
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
git clone --depth 1 https://github.com/raysan5/raylib.git raylib
cd raylib/src/
make PLATFORM=PLATFORM_DESKTOP # To make the static version.
make PLATFORM=PLATFORM_DESKTOP RAYLIB_LIBTYPE=SHARED # To make the dynamic shared version.
make PLATFORM=PLATFORM_WEB # To make web version.