summaryrefslogtreecommitdiffstats
path: root/examples/serialport/blockingreceiver/blockingreceiver.pro
blob: 378b069c5c60ac93d1a13c34555a322c216a8fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
QT += widgets serialport
requires(qtConfig(combobox))

TARGET = blockingreceiver
TEMPLATE = app

HEADERS += \
    dialog.h \
    receiverthread.h

SOURCES += \
    main.cpp \
    dialog.cpp \
    receiverthread.cpp

target.path = $$[QT_INSTALL_EXAMPLES]/serialport/blockingreceiver
INSTALLS += target