GTK+ By Example/Environment/Command Line Compilation
Here is a small example using GCC without compiler flags to get the page started.
gcc -o<file to output> <input> `pkg-config --cflags --libs gtk+-2.0`
- notice the `` characters, they are telling the command line to process this first and then use then place the output here.
Compiler Flags Specific to GTK+ and Glib
edit--G_DISABLE_DEPRECATED
Build Scripts
editWe probably should use an inter-book link for this.
- Automake