summaryrefslogtreecommitdiff
path: root/examples/serialport/slave/slave.pro
blob: eb684ff6c8061794e9b0d9bc66688dbe6c4eb166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
greaterThan(QT_MAJOR_VERSION, 4) {
    QT       += widgets serialport
    requires(qtConfig(combobox))
} else {
    include($$QTSERIALPORT_PROJECT_ROOT/src/serialport/qt4support/serialport.prf)
}

TARGET = slave
TEMPLATE = app

HEADERS += \
    dialog.h

SOURCES += \
    main.cpp \
    dialog.cpp

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