Show Or Hide Console Based On QMake And CMake
It’s weird to show console in GUI application for no matter what platform. For the qmake project, the relevant setting is: CONFIG += console CONFIG -= app_bundle We have to remove the console and keep app_bundle for qmake variable CONFIG if we want to hide console when running the program. Read more…