-
Notifications
You must be signed in to change notification settings - Fork 1
/
modbus-rs485-rtu-m.pro
71 lines (60 loc) · 1.32 KB
/
modbus-rs485-rtu-m.pro
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#/*********************************************************************
# * Copyright EoF Software Labs. All Rights Reserved.
# * Copyright EoF Software Labs Authors.
# * Written by B. Eschrich ([email protected])
# * SPDX-License-Identifier: GPL v3
# **********************************************************************/
QT += core
QT += gui
QT += widgets
QT += network
QT += concurrent
QT += serialbus
QT += serialport
QT += dbus
QT += xml
###
TEMPLATE = app
###
CONFIG += c++17
CONFIG += sdk_no_version_check
CONFIG += nostrip
CONFIG += debug
#CONFIG += lrelease
CONFIG += embed_translations
CONFIG += create_prl
CONFIG += app_bundle
#INCLUDEPATH += $$PWD/libmodbus/src
#INCLUDEPATH += /usr/include/modbus
#LIBS += -lmodbus
SOURCES += \
dlgadcindatatype.cpp \
dlgrelaylinkcontrol.cpp \
main.cpp \
mainwindow.cpp \
mbrtuclient.cpp \
wsanaloginmbrtu.cpp \
wsmodbusrtu.cpp \
wsrelaydiginmbrtu.cpp
HEADERS += \
dlgadcindatatype.h \
dlgrelaylinkcontrol.h \
mainwindow.h \
mbrtuclient.h \
wsanaloginmbrtu.h \
wsmodbusrtu.h \
wsrelaydiginmbrtu.h
RESOURCES += \
assets.qrc
FORMS += \
dlgadcindatatype.ui \
dlgrelaylinkcontrol.ui \
mainwindow.ui
TRANSLATIONS += \
modbus-rs485-rtu-m_en_US.ts
# Default rules for deployment.
target.path = /usr/local/bin
INSTALLS += target
DISTFILES += \
LICENSE.md \
README.md