-
Notifications
You must be signed in to change notification settings - Fork 8
/
QSuperTerm.pro
75 lines (67 loc) · 1.9 KB
/
QSuperTerm.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
#-------------------------------------------------
#
# Project created by QtCreator 2017-03-21T19:23:08
#
#-------------------------------------------------
QT += core gui serialport sql network xml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QSuperTerm
TEMPLATE = app
DESTDIR = bin
FORMS += \
SuperTerm/mainwindow.ui \
NewSession/NewSession.ui \
NewSession/SerialSetting.ui \
NewSession/TelnetSetting.ui \
Telnet/TelnetTerm.ui \
Serial/SerialTerm.ui \
SendSave/SendSave.ui \
Console/console.ui \
NetAssist/NetAssist.ui \
NewSession/NetAssistSetting.ui \
HEADERS += \
SuperTerm/mainwindow.h \
NewSession/NewSession.h \
NewSession/SerialSetting.h \
NewSession/Setting.h \
NewSession/TelnetSetting.h \
QTermWidget/QTermScreen.h \
QTermWidget/QTermWidget.h \
NewSession/SessionWindow.h \
Telnet/qttelnet.h \
Telnet/TelnetTerm.h \
Serial/SerialTerm.h \
SendSave/SendSave.h \
SendSave/SSWorker.h \
SuperTerm/projectfile.h \
NewSession/nstypes.h \
Console/Console.h \
Console/pty.h \
NetAssist/NetAssist.h \
NewSession/NetAssistSetting.h \
NewSession/KconfigSetting.h
SOURCES += \
SuperTerm/main.cpp \
SuperTerm/mainwindow.cpp \
NewSession/NewSession.cpp \
NewSession/SerialSetting.cpp \
NewSession/Setting.cpp \
NewSession/TelnetSetting.cpp \
QTermWidget/QTermScreen.cpp \
QTermWidget/QTermWidget.cpp \
NewSession/SessionWindow.cpp \
Telnet/qttelnet.cpp \
Telnet/TelnetTerm.cpp \
Serial/SerialTerm.cpp \
SendSave/SendSave.cpp \
SendSave/SSWorker.cpp \
SuperTerm/projectfile.cpp \
Console/Console.cpp \
Console/pty.cpp \
NetAssist/NetAssist.cpp \
NewSession/NetAssistSetting.cpp \
NewSession/KconfigSetting.cpp
win:
{
LIBS += -L$$PWD/./ -lwinpty
}