-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathccache.pro
82 lines (56 loc) · 1.35 KB
/
ccache.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
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
HEADERS += \
src/signal_handler.h \
src/ccache_config.h \
src/cache/mcache.h \
src/cache/cache.h \
src/http/request_handler.h \
src/http/request.h \
src/http/reply.h \
src/lib/util.h \
src/lib/sds.h \
src/lib/safe_queue.h \
src/lib/objSds.h \
src/lib/dicttype.h \
src/lib/dict.h \
src/lib/adlist.h \
src/lib/ufile.h \
src/lib/mhash.h \
src/net/client.h \
src/net/anet.h \
src/net/ae.h \
src/organizer/bio.h \
src/service/zoom.h \
src/net/http_server.h
SOURCES += \
src/main.c \
src/cache/mcache.c \
src/cache/cache.c \
src/http/request_handler.c \
src/http/request.c \
src/http/reply.c \
src/lib/util.c \
src/lib/sds.c \
src/lib/safe_queue.c \
src/lib/objSds.c \
src/lib/dicttype.c \
src/lib/dict.c \
src/lib/adlist.c \
src/lib/ufile.c \
src/lib/mhash.c \
src/net/client.c \
src/net/anet.c \
src/net/ae.c \
src/organizer/bio.c \
src/service/zoom.c \
src/usage.c \
src/net/http_server.c
INCLUDEPATH += src/
INCLUDEPATH += /usr/local/include/opencv
LIBS += -L/usr/local/lib/ -lopencv_core -lopencv_highgui -lopencv_imgproc
LIBS += -L/usr/lib/ -lpthread
# DEBUG
LIBS += -L/usr/local/lib/ -lopencv_legacy