summaryrefslogtreecommitdiffstats
path: root/examples/serialbus/modbus/adueditor/adueditor.pro
blob: 77a61580ac57d44235495a3c91e7fe0bc9f26f9f (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 += c++11
INCLUDEPATH += .
TARGET = adueditor
QT += serialbus serialport widgets
QT += serialbus-private core-private
requires(qtConfig(combobox))
requires(qtConfig(modbus-serialport))

SOURCES += \
    main.cpp \
    mainwindow.cpp \
    modbustcpclient.cpp

HEADERS += \
    mainwindow.h  \
    modbustcpclient.h \
    modbustcpclient_p.h \
    plaintextedit.h

FORMS += \
    interface.ui

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