-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathcore.pri
More file actions
124 lines (115 loc) · 2.59 KB
/
core.pri
File metadata and controls
124 lines (115 loc) · 2.59 KB
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
HEADERS += \
$$PWD/cowbytearray.h \
$$PWD/cowstring.h \
$$PWD/url.h \
$$PWD/variant.h
HEADERS += \
$$PWD/zmqcontext.h \
$$PWD/zmqsocket.h \
$$PWD/zmqvalve.h \
$$PWD/zmqreqmessage.h \
$$PWD/zmqreprouter.h
SOURCES += \
$$PWD/zmqcontext.cpp \
$$PWD/zmqsocket.cpp \
$$PWD/zmqvalve.cpp \
$$PWD/zmqreprouter.cpp
HEADERS += $$PWD/processquit.h
SOURCES += $$PWD/processquit.cpp
HEADERS += \
$$PWD/test.h \
$$PWD/tnetstring.h \
$$PWD/httpheaders.h \
$$PWD/zhttprequestpacket.h \
$$PWD/zhttpresponsepacket.h \
$$PWD/log.h \
$$PWD/bufferlist.h \
$$PWD/layertracker.h
SOURCES += \
$$PWD/test.cpp \
$$PWD/tnetstring.cpp \
$$PWD/httpheaders.cpp \
$$PWD/zhttprequestpacket.cpp \
$$PWD/zhttpresponsepacket.cpp \
$$PWD/log.cpp \
$$PWD/bufferlist.cpp \
$$PWD/layertracker.cpp
HEADERS += \
$$PWD/packet/httprequestdata.h \
$$PWD/packet/httpresponsedata.h \
$$PWD/packet/retryrequestpacket.h \
$$PWD/packet/wscontrolpacket.h \
$$PWD/packet/statspacket.h \
$$PWD/packet/zrpcrequestpacket.h \
$$PWD/packet/zrpcresponsepacket.h
SOURCES += \
$$PWD/packet/retryrequestpacket.cpp \
$$PWD/packet/wscontrolpacket.cpp \
$$PWD/packet/statspacket.cpp \
$$PWD/packet/zrpcrequestpacket.cpp \
$$PWD/packet/zrpcresponsepacket.cpp
HEADERS += \
$$PWD/callback.h \
$$PWD/config.h \
$$PWD/timerwheel.h \
$$PWD/reactor.h \
$$PWD/executor.h \
$$PWD/jwt.h \
$$PWD/timer.h \
$$PWD/defercall.h \
$$PWD/socketnotifier.h \
$$PWD/event.h \
$$PWD/eventloop.h \
$$PWD/readwrite.h \
$$PWD/tcplistener.h \
$$PWD/tcpstream.h \
$$PWD/unixlistener.h \
$$PWD/unixstream.h \
$$PWD/filewatcher.h \
$$PWD/logutil.h \
$$PWD/uuidutil.h \
$$PWD/zutil.h \
$$PWD/httprequest.h \
$$PWD/websocket.h \
$$PWD/zhttpmanager.h \
$$PWD/zhttprequest.h \
$$PWD/zwebsocket.h \
$$PWD/zrpcmanager.h \
$$PWD/zrpcrequest.h \
$$PWD/statusreasons.h \
$$PWD/inspectdata.h \
$$PWD/cors.h \
$$PWD/simplehttpserver.h \
$$PWD/stats.h \
$$PWD/statsmanager.h \
$$PWD/settings.h
SOURCES += \
$$PWD/config.cpp \
$$PWD/timerwheel.cpp \
$$PWD/reactor.cpp \
$$PWD/executor.cpp \
$$PWD/jwt.cpp \
$$PWD/timer.cpp \
$$PWD/defercall.cpp \
$$PWD/socketnotifier.cpp \
$$PWD/event.cpp \
$$PWD/eventloop.cpp \
$$PWD/tcplistener.cpp \
$$PWD/tcpstream.cpp \
$$PWD/unixlistener.cpp \
$$PWD/unixstream.cpp \
$$PWD/filewatcher.cpp \
$$PWD/logutil.cpp \
$$PWD/uuidutil.cpp \
$$PWD/zutil.cpp \
$$PWD/zhttpmanager.cpp \
$$PWD/zhttprequest.cpp \
$$PWD/zwebsocket.cpp \
$$PWD/zrpcmanager.cpp \
$$PWD/zrpcrequest.cpp \
$$PWD/statusreasons.cpp \
$$PWD/cors.cpp \
$$PWD/simplehttpserver.cpp \
$$PWD/stats.cpp \
$$PWD/statsmanager.cpp \
$$PWD/settings.cpp