mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-05-03 22:28:01 +02:00
5 lines
189 B
Batchfile
5 lines
189 B
Batchfile
rem -g -> debug symbols
|
|
rem -o[0-3] -> optimization
|
|
rem -Wall -> all warning
|
|
|
|
g++ main.cpp -Wall -o3 -o ./bin/game.exe -Ilibs/SDL2-mingw/include -Llibs/SDL2-mingw/lib/x64 -lSDL2 -lSDL2main |