summaryrefslogtreecommitdiffstats
path: root/tests/consolewaitreader/consolewaitreader.pro
blob: 441821655103d7554479efebf37f7951968a525b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
TEMPLATE = app
CONFIG += console
QT -= gui
OBJECTS_DIR = obj
MOC_DIR = moc

INCLUDEPATH += \
    ../../include \
    ../../src

HEADERS += \
    ../../include/serialport.h \
    ../../include/serialportinfo.h

include(../../src/src.pri)

SOURCES += main.cpp

CONFIG(debug, debug|release) {
    DESTDIR = debug
    TARGET = consolewaitreaderd
} else {
    DESTDIR = release
    TARGET = consolewaitreader
}