mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-04-23 21:53:28 +02:00
10 lines
226 B
Bash
10 lines
226 B
Bash
#download the vc sdl dev lib
|
|
#unzip
|
|
#move the lib to correct folder
|
|
#move headers / add to I
|
|
#add to include path
|
|
|
|
|
|
g++ main.cpp -o ./bin/game.exe -Ilibs/SDL2-mingw/include \
|
|
-Llibs/SDL2-mingw/lib \
|
|
-lSDL2 -lSDL2main |