Le logiciel Geany permet de compiler énormément de langage différents.

Il est multiplateforme, libre et gratuit.

______________________________________________________________
Compiler du C

Compiler	gcc -Wall -c "%f"
Construire	gcc -Wall -o "%e" "%f"

______________________________________________________________

Compiler du C avec le support de SDL

Compiler	gcc -c "%f" -lmingw32 -lSDLmain -lSDL
Construire	gcc -Wall -o "%e" "%f" -lmingw32 -lSDLmain -lSDL

______________________________________________________________

Compiler du C avec le support de SDL 2

Compiler	gcc -c "%f" -lmingw32 -lSDL2main -lSDL2
Construire	gcc -Wall -o "%e" "%f" -lmingw32 -lSDL2main -lSDL2

______________________________________________________________
Compiler du C++

Compiler	g++ -Wall -c "%f"
Construire	g++ -Wall -o "%e" "%f"

______________________________________________________________
Compiler du C++ avec le support du moteur 3D Irrlicht

(uniquement OpenGL)

Compiler	g++ -Wall -c "%f" -I./include
Construire	g++ -Wall -o "%e" "%f" -lIrrlicht -lopengl32