updated readme and deleted those deps from the repo

This commit is contained in:
2026-01-31 14:48:49 -06:00
parent a0bcabe574
commit 89c9a7681b
2189 changed files with 51 additions and 1110963 deletions

View File

@@ -1,3 +1,53 @@
# shitgame
game made using only sdl2 and c
game made using only sdl2 and c
DEPENDANCIES
SDL CORE:
use SDL 2.24.x
https://github.com/libsdl-org/SDL.git
cd SDL
git checkout release-2.24.x
mkdir build
cd build
cmake ..
sudo make install
SDL IMAGE:
use SDL_Image 2.8.x
https://github.com/libsdl-org/SDL_image.git
cd SDL_image
git checkout release-2.8.x
mkdir build
cd build
cmake ..
sudo make install
SDL_Net:
use SDL_Net 2.2.x
https://github.com/libsdl-org/SDL_net.git
cd SDL_net
git checkout release-2.2.x
mkdir build
cd build
cmake ..
sudo make install
SDL_ttf
use SDL_ttf 2.24.x
https://github.com/libsdl-org/SDL_ttf.git
cd SDL_ttf
git checkout release-2.24.x
mkdir build
cd build
cmake ..
sudo make install