summaryrefslogtreecommitdiffstats
path: root/tests/consolewriter/consolewriter.pro
blob: 335d92c7fc8af4d213dd4339e45d565d30fb4f31 (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 = consolewriterd
} else {
    DESTDIR = release
    TARGET = consolewriter
}