forked from yfinkelstein/node-zookeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
64 lines (64 loc) · 1.9 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
'variables': {
'platform': '<(OS)',
},
"targets":
[
{
"target_name": "zookeeper",
'message': 'Building Zookeeper Library',
'dependencies': ['libzk', 'deps/binding.gyp:zookeeper'],
"sources": [ "src/node-zk.cpp" ],
'cflags': ['-Wall', '-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'],
}],
[ 'OS=="win"', {
'defines': ['DLL_EXPORT'],
"sources": [ "src/node-zk.def" ],
'include_dirs': ['<(module_root_dir)/deps/zookeeper-3.4.5/src/c/include', '<(module_root_dir)/deps/zookeeper-3.4.5/src/c/generated'],
'libraries': ['<(module_root_dir)/build/Release/lib/zookeeper.lib','Ws2_32.lib']
}
],
]
},
{
'target_name': 'libzk',
'type': 'executable',
'actions': [{
'action_name': 'build_zk_client_lib',
'inputs': [''],
'outputs': [''],
'message': 'Donwloading Zookeeper Library',
'action': ['python', 'libzk-download.py', '--download', '--patch']
}]
},
{
'target_name': 'clean',
'type': 'executable',
'actions': [{
'action_name': 'clean_client_lib',
'inputs': [''],
'outputs': [''],
'message': 'Cleaning Zookeeper Library',
'action': ['python', 'libzk-download.py', '--clean']
}]
}
]
}