-
Notifications
You must be signed in to change notification settings - Fork 28
/
FdogShell.pro
145 lines (125 loc) · 4.38 KB
/
FdogShell.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#-------------------------------------------------
#
# Project created by QtCreator 2023-08-08T21:16:39
#
#-------------------------------------------------
QT += core gui
QT +=testlib
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = FdogShell
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
main.cpp \
module_mainwindow/mainwindow.cpp \
module_zookeeper/zookeeperwidget.cpp \
module_connect/createconnect.cpp \
module_zookeeper/zookeeperhandle.cpp \
module_ssh/sshwidget.cpp \
module_ssh/sshhandle.cpp \
module_ssh/datahandle.cpp \
module_tool/toolswidget.cpp \
module_tool/toolshandle.cpp \
module_setting/settingwidget.cpp \
module_connect/secretkeywidget.cpp \
module_smalltool/smalltoolwidget.cpp \
module_historyconnect/historyconnectwidget.cpp \
module_connect/keywidget.cpp \
module_utils/utils.cpp \
module_setting/colormatch.cpp \
module_ssh/findwidget.cpp \
module_ssh/downloadwidget.cpp \
module_ssh/mkdirfolderwidget.cpp \
module_ssh/addcommondwidget.cpp \
module_ssh/historycommondwidget.cpp \
module_config/config.cpp \
module_thrift/thriftwidget.cpp \
module_zookeeper/zookeepertipswidget.cpp \
module_zookeeper/zookeepermanagewidget.cpp \
module_flowlayout/flowlayout.cpp \
module_activate/activate.cpp \
module_sql/sqlhandle.cpp \
module_qss/qss.cpp \
module_form/form.cpp
HEADERS += \
module_mainwindow/mainwindow.h \
module_zookeeper/zookeeperwidget.h \
module_connect/createconnect.h \
module_zookeeper/zookeeperhandle.h \
module_ssh/sshwidget.h \
module_ssh/sshhandle.h \
module_ssh/datahandle.h \
module_tool/toolswidget.h \
module_tool/toolshandle.h \
module_setting/settingwidget.h \
module_connect/secretkeywidget.h \
module_smalltool/smalltoolwidget.h \
module_historyconnect/historyconnectwidget.h \
module_connect/keywidget.h \
module_utils/utils.h \
module_setting/colormatch.h \
module_ssh/findwidget.h \
module_ssh/downloadwidget.h \
module_ssh/mkdirfolderwidget.h \
module_ssh/addcommondwidget.h \
module_ssh/historycommondwidget.h \
module_config/config.h \
module_thrift/thriftwidget.h \
module_zookeeper/zookeepertipswidget.h \
module_zookeeper/zookeepermanagewidget.h \
module_flowlayout/flowlayout.h \
module_activate/activate.h \
module_sql/sqlhandle.h \
module_qss/qss.h \
module_form/form.h
FORMS += \
module_mainwindow/mainwindow.ui \
module_zookeeper/zookeeperwidget.ui \
module_connect/createconnect.ui \
module_ssh/sshwidget.ui \
module_tool/toolswidget.ui \
module_setting/settingwidget.ui \
module_connect/secretkeywidget.ui \
module_smalltool/smalltoolwidget.ui \
module_historyconnect/historyconnectwidget.ui \
module_connect/keywidget.ui \
module_setting/colormatch.ui \
module_ssh/findwidget.ui \
module_ssh/downloadwidget.ui \
module_ssh/mkdirfolderwidget.ui \
module_ssh/addcommondwidget.ui \
module_ssh/historycommondwidget.ui \
module_thrift/thriftwidget.ui \
module_zookeeper/zookeepertipswidget.ui \
module_zookeeper/zookeepermanagewidget.ui \
module_activate/activate.ui \
module_qss/qss.ui \
module_form/form.ui
RESOURCES += \
lib.qrc \
conf.qrc \
fonts.qrc \
qss.qrc
QT += network
win32: LIBS += -L$$PWD/../zookeeper/lib/ -lzookeeper
INCLUDEPATH += $$PWD/../zookeeper/include
DEPENDPATH += $$PWD/../zookeeper/include
win32: LIBS += -L$$PWD/../libssh2.11.0/lib/ -llibssh2
INCLUDEPATH += $$PWD/../libssh2.11.0/include
DEPENDPATH += $$PWD/../libssh2.11.0/include
LIBS += -luser32
DISTFILES += \
lib/Fdogicon.ico
RC_ICONS = lib/Fdogicon.ico
QT.testlib.CONFIG -= console
CONFIG += console
CONFIG += resources_big
QT += sql