I am using a qDebug()
of Qt Framework for printf
something on the screen. It works just fine when I run application from Qt Creator, but when I try to execute it from Windows cmd
it shows nothing. Why that happens?
相关问题
- QML: Cannot read property 'xxx' of undefin
- QTextEdit.find() doesn't work in Python
- QT Layouts, how to make widgets in horizontal layo
- QT GUI freezes even though Im running in separate
- Why is the C program giving weird output using Sca
相关文章
- ubuntu20.4中c#通过c++库调用python脚本
- Qt槽函数自动执行多遍
- Is there a non-java, cross platform way to launch
- How to get a settings storage path in a cross-plat
- Why doesn't valgrind detect a memory leak in m
- QTreeView remove decoration/expand button for all
- qt界面拥挤
- how do I correctly return values from pyqt to Java
You have to add
to your projects
.pro
file and do not forget to clean and build (rebuild) your project.Run your application with
It redirects stderr to stdout and stdout to a file.