grim/libgnt

Add built header sources to *_dep.
meson
2016-12-18, Elliott Sales de Andrade
a79a36dc6542
Add built header sources to *_dep.

This ensures dependencies that require the headers will be built after
the headers.
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}