My program cant find the gtk headers. I have #include <gtk/gtk.h> in my program and i compile with
gcc main.c -o main 'pkg-config --cflags --libs gtk-2.0'
but i keep getting
gcc: pkg-config --cflags --libs gtk-2.0: No such file or directory
main.c:2:21: error: gtk/gtk.h: No such file or directory
i do have build-essential and libgtk2.0-dev installed and /usr/include/gtk-2.0 does exist
This is really annoying as it works fine on my other computer.