forked from chunyi1994/cppevent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcppevent.pro
44 lines (42 loc) · 809 Bytes
/
cppevent.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
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
QMAKE_CXXFLAGS += -std=c++11
SOURCES += main.cpp \
poller.cpp \
eventloop.cpp \
event.cpp \
socket.cpp \
listener.cpp \
tcpserver.cpp \
connection.cpp \
buffer.cpp \
tcpclient.cpp \
http_message.cpp \
httpclient.cpp \
time_event.cpp \
timer.cpp \
demo/tiny_proxy.cpp \
demo/qq_crawler.cpp
HEADERS += \
poller.h \
utils.h \
eventloop.h \
event.h \
socket.h \
listener.h \
tcpserver.h \
connection.h \
buffer.h \
thread_safe_queue.h \
tcpclient.h \
chatroom.h \
http_message.h \
httpclient.h \
time_event.h \
timer.h \
time_event_compare.h \
tcp_address.h \
demo/tiny_proxy.h \
demo/qq_crawler.h