-
Notifications
You must be signed in to change notification settings - Fork 656
/
depends.mk
55 lines (50 loc) · 1.7 KB
/
depends.mk
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
################################################################
## Modified this file to specify depending library path.
##
## Depending libs:
## boost-1.53.0 (only need header)
## protobuf-2.4.1
## snappy
## zlib
##
################################################################
################################################################
## Boost header directory.
##
## Check file exist:
## $(BOOST_HEADER_DIR)/boost/smart_ptr.hpp
##
#BOOST_HEADER_DIR=/home/users/qinzuoyan01/libs/boost_1_53_0
BOOST_HEADER_DIR=/usr
################################################################
################################################################
## Protocal Buffers directory containing `include' and `lib'.
##
## Check file exist:
## $(PROTOBUF_DIR)/bin/protoc
## $(PROTOBUF_DIR)/include/google/protobuf/message.h
## $(PROTOBUF_DIR)/lib/libprotobuf.a
##
#PROTOBUF_DIR=/home/users/qinzuoyan01/libs/protobuf-2.4.1/output
PROTOBUF_DIR=/usr/local
################################################################
################################################################
## Snappy directory containing `include' and `lib'.
##
## Check file exist:
## $(SNAPPY_DIR)/include/snappy.h
## $(SNAPPY_DIR)/lib/libsnappy.a
##
#SNAPPY_DIR=/home/users/qinzuoyan01/libs/snappy-1.1.1/output
SNAPPY_DIR=/usr
################################################################
################################################################
## Zlib directory containing `include' and `lib'.
##
## Check file exist:
## $(ZLIB_DIR)/include/zlib.h
## $(ZLIB_DIR)/lib/libz.*
##
## If zlib is already installed in system path, ignore ZLIB_DIR.
#ZLIB_DIR=
################################################################