-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNetServer.pro
More file actions
48 lines (44 loc) · 892 Bytes
/
NetServer.pro
File metadata and controls
48 lines (44 loc) · 892 Bytes
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
QT += core
QT -= gui
CONFIG += c++11
QMAKE_CXXFLAGS = -std=c++0x
TARGET = NetServer
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp \
threadpool.cpp \
channel.cpp \
poller.cpp \
eventloop.cpp \
eventloopthread.cpp \
eventloopthreadpool.cpp \
timer.cpp \
timermanager.cpp \
socket.cpp \
tcpconnection.cpp \
tcpserver.cpp \
httpsession.cpp \
httpserver.cpp \
echoserver.cpp \
log/logger.cpp \
log/logtest.cpp \
coroutine/coroutine.cpp \
coroutine/coroutine_test.cpp
HEADERS += \
threadpool.h \
channel.h \
poller.h \
eventloop.h \
eventloopthread.h \
eventloopthreadpool.h \
timer.h \
timermanager.h \
socket.h \
tcpconnection.h \
tcpserver.h \
httpsession.h \
httpserver.h \
echoserver.h \
log/logger.h \
coroutine/coroutine.h