I installed D, I downloaded gtkD... Now what?

Gotcha's

Installing gtkD

Just run the included makeAll file. There is a .bat for Windows and a .sh file for Linux.

Compiling and linking

What!?! you aren't using leds as your IDE? Here are some things others like yourself ran into...

* Don't link using dmd.
* gcc cares about the order libraries are listed for linking. Put "-lphobos" last.
* gtkD requires libdl.

dmd myprog.d -c
gcc myprog.o -o myprog -lm -lpthread -ldl -lgtkd -lphobos