summaryrefslogtreecommitdiffstats
path: root/examples/serialbus/modbus/master/master.pro
blob: 536b559370fd8b1cf8139707b9754800989f2261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
QT += serialbus serialport widgets

TARGET = modbusmaster
TEMPLATE = app
CONFIG += c++11

SOURCES += main.cpp\
        mainwindow.cpp \
        settingsdialog.cpp \
        writeregistermodel.cpp

HEADERS  += mainwindow.h \
         settingsdialog.h \
        writeregistermodel.h

FORMS    += mainwindow.ui \
         settingsdialog.ui

RESOURCES += \
    master.qrc

target.path = $$[QT_INSTALL_EXAMPLES]/serialbus/modbus/master
INSTALLS += target