Error Using PDCurses: Cannot Open File Libc.C
- by cam
I'm getting the error:
1>LINK : fatal error LNK1104: cannot open file 'LIBC.lib'
Here's my source code:
#include <curses.h>
int main()
{
initscr(); /* Start curses mode */
printw("Hello World !!!"); /* Print Hello World */
refresh(); /* Print it on to the real screen */
getch(); /* Wait for user input */
endwin(); /* End curses mode */
return 0;
}
I've configured the PDcurses library properly (added to Additional Include libraries, added folder to Additional Library Directories).
I've looked around for a bit, and I've tried adding Libc.C to the 'Ignore Library' list, which in turn causes about 150 errors.
Not sure what to do from here.