forked from changfeng1050/SerialWizard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSerialWizard.pro
36 lines (29 loc) · 844 Bytes
/
SerialWizard.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
#-------------------------------------------------
#
# Project created by QtCreator 2017-08-03T09:01:26
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
QT += serialport
QT += network
CONFIG += c++11
TARGET = SerialWizard
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
global.cpp \
FrameInfoDialog.cpp \
CalculateCheckSumDialog.cpp \
data/AbstractReadWriter.cpp \
data/BridgeReadWriter.cpp \
data/SerialReadWriter.cpp \
data/TcpReadWriter.cpp
HEADERS += mainwindow.h \
global.h \
FrameInfoDialog.h \
CalculateCheckSumDialog.h \
data/AbstractReadWriter.h \
data/BridgeReadWriter.h \
data/SerialReadWriter.h \
data/TcpReadWriter.h