c++ - QtCreator doesn't show messages in application output -
i'm writing console application in qtc, , has lot of "cout << " outputs of project configurations unit tests (catch utest framework) , nothing of has shown in application output window. on projects tab - run in console has been switched off. , don't plan use qdebug()
because project doesn't use qt library
how can fixed?
output cout should not in application output, should in separate console window console projects (if have config += console in pro file).
make sure have
system("pause");
at end of program able see console window, can closed before can see output.
Comments
Post a Comment