qt creator - C++ console ncurses project - QtCreator doesn't show any output in xterm neither in console -
#include <ncurses.h> int main() { initscr(); addstr("hello world"); refresh(); getch(); endwin(); return 0; }
this basic application doesn't show output when building , running in qtcreator 2.8.0.
when run compiled in qtcreator program in separate terminal window, works fine. when run under qtcreator (ctrl-r or press "run" button), see empty xterm window , no output. guess somehow related qtcreator_process_stub
, entitles empty xterm window.
Comments
Post a Comment