forked from yfinkelstein/node-zookeeper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
binding.gyp
42 lines (42 loc) · 1.19 KB
/
binding.gyp
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
{
'variables': {
'platform': '<(OS)',
},
"targets":
[
{
"target_name": "zookeeper",
'dependencies': ['libzk'],
"sources": [ "src/node-zk.cpp" ],
'cflags': ['-Wall', '-Werror', '-O0'],
'conditions': [
['OS=="solaris"', {
'cflags': ['-Wno-strict-aliasing'],
'defines': ['_POSIX_PTHREAD_SEMANTICS'],
'include_dirs': ['/opt/local/include/zookeeper'],
'ldflags': ['-lzookeeper_st'],
}],['OS=="mac"',{
'include_dirs': ['<(module_root_dir)/build/zk/include/zookeeper'],
'libraries': ['<(module_root_dir)/build/zk/lib/libzookeeper_st.a'],
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'MACOSX_DEPLOYMENT_TARGET': '10.5'
}
}],['OS=="linux"',{
'include_dirs': ['<(module_root_dir)/build/zk/include/zookeeper'],
'libraries': ['<(module_root_dir)/build/zk/lib/libzookeeper_st.a'],
}]
]
},
{
'target_name': 'libzk',
'type': 'none',
'actions': [{
'action_name': 'build_zk_client_lib',
'inputs': [''],
'outputs': [''],
'action': ['sh', 'libzk-build.sh']
}]
}
],
}