qulogic/libgnt

Fix setup of build on Windows.

2018-11-23, Elliott Sales de Andrade
c6ed4f6deea1
Fix setup of build on Windows.

This does not totally build yet due to some signal-related functions.
#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;
}