Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 391 Bytes

File metadata and controls

18 lines (12 loc) · 391 Bytes

Game name: lagrange

Compilation

First step is to acquire SDL

Then

> WINDOWS
> vcvarsall
> cl -nologo -Oi -Od -Zi -MD ../game.cpp -I"<your sdl root>/include" /link -out:iarc.exe -subsystem:console -debug SDL2.lib SDL2main.lib opengl32.lib

$ LINUX
$ mkdir bin
$ cd bin
$ g++ ../game.cpp -o game -lGL `sdl2-config --cflags --libs`