-
Notifications
You must be signed in to change notification settings - Fork 0
/
net.pro
40 lines (33 loc) · 928 Bytes
/
net.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-03-05T23:13:06
#
#-------------------------------------------------
QT += core gui network testlib
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = net
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
server/server.cpp \
client/client.cpp \
server/managerclients.cpp \
package/package.cpp \
package/packagecommand.cpp \
package/packagemessage.cpp \
test/test.cpp \
package/packageauth.cpp \
server/authmanager.cpp \
package/packagefilehandler.cpp
HEADERS += mainwindow.h \
server/server.h \
client/client.h \
server/managerclients.h \
package/package.h \
package/packagecommand.h \
package/packagemessage.h \
test/test.h \
package/packageauth.h \
server/authmanager.h \
package/packagefilehandler.h
FORMS += mainwindow.ui