marmistrz
marmistrz

Reputation: 6404

Permanently disable the 'run in terminal' option

I created a plain C++ with Qt program. I failed to achieve any application output. The fix for me was to disable the 'run in terminal' option in Qt Creator.

Anyway, I'd rather use the built-in application output pane for output than a separate terminal. I know I can change it per build configuration, but can make it disabled by default?

I'm using Qt Creator 3.4.2

Upvotes: 1

Views: 536

Answers (1)

RazrFalcon
RazrFalcon

Reputation: 807

Default state of this option depends on your project file.

For qmake, if you have CONFIG += console - then this checkbox is checked.

For qbs it's consoleApplication: true

If you want different behavior for new projects - you can create your own Qt Creator project wizard template.

Upvotes: 1

Related Questions