I'm trying to compile a C++ program on Xcode using the curses library, altough I keep getting errors with the curses commands ("Undefined symbol") . I've already added the "libncurses.5.4.tbd" in the Frameworks and Libraries. I really need help with this beucase I'm trying to solve this problem for a long time.
Thank you for any help and sorry for any bad english ! :)
I'm trying to compile the simpliest code and I can't.
#include <curses.h>
int main()
{
initscr();
printw("Hello World !!!");
refresh();
getch();
endwin();
return 0;
}
All the curses calls get the ("Undefined symbol" problem) . My question is also, can I compile the progam by pressing the normal arrow ("Start the active scheme") ?
I really need alot of help here. Ty for everything.