-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCuteCom.pro
82 lines (71 loc) · 1.72 KB
/
CuteCom.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
72
73
74
75
76
77
78
79
80
81
82
#-------------------------------------------------
#
# This is the qmake build file mainly provided
# to ease development with Qt Creator.
# Since the version number is maintained within
# the CMakeLists.txt, cmake should have been
# called at least once.
# Otherwise the necessary version.h file will
# not have been generated.
# If for whatever reason cmake is not an option
# create the version.h from version.h.in manually
#
#-------------------------------------------------
QT += core gui serialport
greaterThan(QT_MAJOR_VERSION, 4){
QT += widgets network
CONFIG += c++11
}
TARGET = CuteCom
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
controlpanel.cpp \
settings.cpp \
devicecombo.cpp \
serialdevicelistmodel.cpp \
statusbar.cpp \
sessionmanager.cpp \
datadisplay.cpp \
datahighlighter.cpp \
searchpanel.cpp \
timeview.cpp \
ctrlcharacterspopup.cpp \
plugin.cpp \
pluginmanager.cpp \
macroplugin.cpp \
macrosettings.cpp \
netproxyplugin.cpp \
netproxysettings.cpp
HEADERS += mainwindow.h \
controlpanel.h \
settings.h \
devicecombo.h \
serialdevicelistmodel.h \
statusbar.h \
sessionmanager.h \
datadisplay.h \
datahighlighter.h \
searchpanel.h \
timeview.h \
ctrlcharacterspopup.h \
plugin.h \
pluginmanager.h \
macroplugin.h \
macrosettings.h \
netproxyplugin.h \
netproxysettings.h
FORMS += mainwindow.ui \
controlpanel.ui \
statusbar.ui \
sessionmanager.ui \
searchpanel.ui \
macroplugin.ui \
netproxyplugin.ui \
macrosettings.ui \
netproxysettings.ui
RESOURCES += \
resources.qrc
DISTFILES += \
qt.astylerc
RC_ICONS = images/cutecom.ico