-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSerialPlus.pro
61 lines (42 loc) · 1.27 KB
/
SerialPlus.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
QT += core gui widgets serialport xml printsupport
#greaterThan(QT_MAJOR_VERSION,4): QT += widgets
#DEFINES += QT_NO_DEBUG_OUTPUT
TARGET = SerialPlus
TEMPLATE = app
DESTDIR = ./build
INCLUDEPATH += ./include \
#DEPENDPATH=./include
OBJECTS_DIR= ./obj
MOC_DIR = ./moc
SOURCES += src/main.cpp \
src/datadisplay.cpp \
src/asciidisplay.cpp \
src/hexdisplay.cpp \
src/binarydisplay.cpp \
src/monitorwidget.cpp \
src/datasender.cpp \
src/normalsender.cpp \
src/terminalsender.cpp \
src/senderwidget.cpp \
src/mainwindow.cpp \
src/terminaledit.cpp \
src/configdialog.cpp \
src/aboutdialog.cpp \
src/searchdialog.cpp
HEADERS += include/datadisplay.h \
include/asciidisplay.h \
include/hexdisplay.h \
include/binarydisplay.h \
include/monitorwidget.h \
include/config.h \
include/datasender.h \
include/normalsender.h \
include/terminalsender.h \
include/mainwindow.h \
include/terminaledit.h \
include/configdialog.h \
include/aboutdialog.h \
include/senderwidget.h \
include/searchdialog.h
RESOURCES += \
application.qrc