Geany
From Allegro Wiki
This article is a stub. Please help Allegro by expanding it.
Geany is available at http://geany.uvena.de/
Below instructions only apply to Linux version of Geany!!!
[edit] Setting up Includes and Arguments
1. Install Allegro and Geany from your Package Manager or build from source.
2. Run Geany and go to "Build" -> "Set Includes and Arguments" in the toolbar.
3. Use the following settings..
Compile:
g++ -O0 -g3 -Wall -c -o"%e.o" "%f"
Build:
g++ -o"%e" ./%e.o `allegro-config --libs --static`
Execute:
"./%e"
Copy the strings as it is, include the quotes.
