-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
30 lines (28 loc) · 867 Bytes
/
BUILD
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
// Zero-mq
[
{ "config": {
"component": "zeromq",
"licenses": [ "http://opensource.org/licenses/gpl-3.0.html" ]
} },
{ "autoconf": {
"name": "zmq_gen",
"postinstall": "cp cppzmq/*.hpp $GEN_DIR/include; mv $GEN_DIR/include $GEN_DIR/zeromq",
"outs": [ "$GEN_DIR/zeromq/zmq.h",
"$GEN_DIR/zeromq/zmq.hpp",
"$GEN_DIR/zeromq/zmq_utils.h",
"$GEN_DIR/lib/libzmq.a"
],
"input_files": [ "Makefile", "cppzmq/*.hpp", "src/*.cpp", "src/*.hpp" ]
} },
{ "cc_library": {
"name": "zeromq",
"cc_headers": [ "$GEN_DIR/zeromq/zmq.h",
"$GEN_DIR/zeromq/zmq.hpp",
"$GEN_DIR/zeromq/zmq_utils.h"
],
"cc_objects": [ "$GEN_DIR/lib/libzmq.a" ],
"dependencies": [ ":zmq_gen" ],
"cc_include_dirs": [ "$GEN_DIR" ],
"strict_file_mode": false
} }
]