67 lines
1.8 KiB
Prolog
67 lines
1.8 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2017-03-01T13:52:35
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui network
|
|
CONFIG += static
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = OutilModbus
|
|
TEMPLATE = app
|
|
|
|
INCLUDEPATH += Sources/ \
|
|
Sources/SerialPort/ \
|
|
Sources/SerialPort/qextserialport/src/
|
|
|
|
SOURCES += \
|
|
Sources/MainWindow.cpp \
|
|
Sources/main.cpp \
|
|
Sources/ModbusBackend.cpp \
|
|
Sources/ModbusSlave.cpp \
|
|
Sources/ModbusMaster.cpp \
|
|
Sources/OutilModbus.cpp \
|
|
Sources/ModbusRepository.cpp \
|
|
Sources/ZTInfo.cpp \
|
|
Sources/ModbusPage.cpp \
|
|
Sources/MainPage.cpp \
|
|
Sources/LazerProbeSimPage.cpp \
|
|
Sources/LazerProbeSimulator.cpp \
|
|
Sources/SerialPort/qextserialport/src/qextserialport_win.cpp \
|
|
Sources/SerialPort/qextserialport/src/qextserialport.cpp \
|
|
Sources/SEIModbusPage.cpp
|
|
|
|
HEADERS += \
|
|
Sources/MainWindow.h \
|
|
Sources/ModbusBackend.h \
|
|
Sources/ModbusSlave.h \
|
|
Sources/ModbusMaster.h \
|
|
Sources/OutilModbus.h \
|
|
Sources/ModbusRepository.h \
|
|
Sources/GlobalDefine.h \
|
|
Sources/ProtocolDefs.h \
|
|
Sources/ZTInfo.h \
|
|
Sources/ModbusPage.h \
|
|
Sources/MainPage.h \
|
|
Sources/LazerProbeSimPage.h \
|
|
Sources/LazerProbeSimulator.h \
|
|
Sources/SerialPort/qextserialport/src/qextserialport_p.h \
|
|
Sources/SerialPort/qextserialport/src/qextserialport_global.h \
|
|
Sources/SerialPort/qextserialport/src/qextserialport.h \
|
|
Sources/SEIModbusPage.h
|
|
|
|
FORMS += \
|
|
Sources/CModbusPage.ui \
|
|
Sources/MainPage.ui \
|
|
Sources/LazerProbeSimPage.ui \
|
|
Sources/SEIModbusPage.ui
|
|
|
|
DEFINES -= Q_OS_UNIX
|
|
|
|
#LIBS += $$PWD/Sources/SerialPort/libqextserialport1.a
|
|
|
|
OTHER_FILES += \
|
|
Sources/SerialPort/qextserialport/src/qextserialport.pri
|