mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +01:00
6 lines
418 B
Batchfile
6 lines
418 B
Batchfile
|
rem -g -> debug symbols
|
||
|
rem -o[0-3] -> optimization
|
||
|
rem -Wall -> all warning
|
||
|
|
||
|
g++ main.cpp shader.cpp material.cpp mesh.cpp mesh_instance.cpp mesh_utils.cpp texture.cpp camera.cpp application.cpp scene.cpp game_scene.cpp object_2d.cpp tile_map.cpp sprite.cpp ^
|
||
|
./libs/glad/src/glad.c -Wall -o3 -o ./bin/game.exe -Ilibs/SDL2-mingw/include -Llibs/SDL2-mingw/lib/x64 -Ilibs/glad/include -lSDL2 -lSDL2main -lOpengl32
|