I would like to have my application output to be opened into a new console window.
Currently it opens in the Application Output pane as show in this question
.pro file for what it's worth
QT += core
QT -= gui
CONFIG += c++11
TARGET = console_app
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp
DEFINES += QT_DEPRECATED_WARNINGS
(How) Can this be done?