-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSerialPortDebugger.pro
More file actions
54 lines (47 loc) · 1.04 KB
/
Copy pathSerialPortDebugger.pro
File metadata and controls
54 lines (47 loc) · 1.04 KB
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
TARGET = SerialPortDebugger
TEMPLATE = app
win32 {
RC_ICONS = application.ico
}
QT += core gui widgets serialport sql
CONFIG += c++11
SOURCES += \
CommandItemWidget.cpp \
CommandScriptDialog.cpp \
DatabaseWrapper.cpp \
DebuggerApplication.cpp \
Logger.cpp \
MainWindow.cpp \
SaveCommandDialog.cpp \
SerialPortManager.cpp \
SerialPortObserver.cpp \
TaskExecutor.cpp \
Utils.cpp \
main.cpp
HEADERS += \
CommandItemWidget.hpp \
CommandScriptDialog.hpp \
DatabaseWrapper.hpp \
DebuggerApplication.hpp \
GlobalDefinition.hpp \
Logger.hpp \
MainWindow.hpp \
SaveCommandDialog.hpp \
SerialPortManager.hpp \
SerialPortObserver.hpp \
TaskExecutor.hpp \
Utils.hpp
FORMS += \
CommandScriptDialog.ui \
MainWindow.ui \
SaveCommandDialog.ui
RESOURCES += \
font.qrc \
image.qrc \
style.qrc
DISTFILES += \
screenshots/linux_amd.png \
screenshots/windows_7.png \
screenshots/windows_10.png \
screenshots/windows_11.png \
README.md