blob: e0d688234e9bf6ba6fbf0168639c6c215e8a8af7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# for testing with terminal
QT += core
QT -= gui
CONFIG += console
CONFIG -= app_bundle
# for testing without terminal
#QT += core gui
TARGET = cli-io
TEMPLATE = app
SOURCES += main.cpp
|